home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
compiler
/
small_c
/
byte_sc
/
isgraph.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1987-10-04
|
128 b
|
8 lines
/*
** return 'true' if c is a graphic character
** (33-126)
*/
isgraph(c) int c; {
return (c>=33 && c<=126);
}