home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
iscntrl.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
384b
|
9 lines
/*
** return 'true' if c is a control character
** (0-31 or 127)
*/
iscntrl(c) char *c; {
/* c is a simulated unsigned integer */
return ((c <= 31) || (c == 127));
}