character constants
This commit is contained in:
parent
b0837b367e
commit
a245a5be96
3 changed files with 123 additions and 4 deletions
|
@ -369,6 +369,12 @@ function isdigit
|
|||
if c <= '9 goto return_1
|
||||
goto return_0
|
||||
|
||||
function isoctdigit
|
||||
argument c
|
||||
if c < '0 goto return_0
|
||||
if c <= '7 goto return_1
|
||||
goto return_0
|
||||
|
||||
function isalpha
|
||||
argument c
|
||||
if c < 'A goto return_0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue