We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcdb456 commit 26ea392Copy full SHA for 26ea392
src/libc/isdigit.src
@@ -8,7 +8,6 @@ _isdigit:
8
push de
9
ld a,l
10
sub a,48
11
- add a,-10
+ sub a,10
12
sbc hl,hl
13
- inc hl
14
ret
src/libc/isgraph.src
@@ -8,7 +8,6 @@ _isgraph:
sub a,33
- add a,-94
+ sub a,94
src/libc/islower.src
@@ -8,7 +8,6 @@ _islower:
sub a,97
- add a,-26
+ sub a,26
src/libc/isupper.src
@@ -8,7 +8,6 @@ _isupper:
sub a,65
0 commit comments