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