home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
enterprs
/
cpm
/
utils
/
s
/
smc21lib.lzh
/
ISXDIGIT.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-03-25
|
256 b
|
17 lines
/*
** return "true" if c is a hexadecimal digit
** (0-9, A-F, a-f)
*/
isxdigit(c) int c; {
return ((c<= 'f' && c >= 'a') ||
(c<= 'F' && c >= 'A') ||
(c<= '9' && c >= '0'));
}