home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
isxdigit.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
384b
|
10 lines
/*
** return 'true' if c is a hexadecimal digit
** (0-9, A-F, or a-f)
*/
isxdigit(c) int c; {
return ((c<='f' && c>='a') ||
(c<='F' && c>='A') ||
(c<='9' && c>='0'));
}