home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource3 / 163_01 / ispunct.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-02-01  |  384 b   |  9 lines

  1. extern int isalpha(), iscntrl();
  2. /*
  3. ** ispunct -- true if argument is neither ASCII control or alphabetic
  4. */
  5. ispunct(c) char c; {
  6.   if(isalpha(c) || iscntrl(c)) return 0;
  7.   else return 1;
  8.   }
  9.