home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / byte_sc / isalpha.c < prev    next >
Encoding:
Text File  |  1987-10-04  |  128 b   |  7 lines

  1. /*
  2. ** return 'true' if c is alphabetic
  3. */
  4. isalpha(c) int c; {
  5.   return ((c<='z' && c>='a') || (c<='Z' && c>='A'));
  6.   }
  7.