home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / ISALPHA.C < prev    next >
Encoding:
Text File  |  1993-03-25  |  128 b   |  8 lines

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