home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 December
/
simtel1292_SIMTEL_1292_Walnut_Creek.iso
/
msdos
/
small_c
/
sc88.arc
/
ISCNTRL.C
< prev
next >
Wrap
Text File
|
1987-10-04
|
256b
|
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));
}