home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource3
/
163_01
/
isalpha.c
< prev
next >
Wrap
Text File
|
1988-02-01
|
384b
|
8 lines
/*
** isalpha -- true if argument is valid ASCII alphabetic
*/
isalpha(c) char c; {
if((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) return 1;
else return 0;
}