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

  1. /*
  2. ** return 'true' if c is lower-case alphabetic
  3. */
  4. islower(c) int c; {
  5.   return (c<='z' && c>='a');
  6.   }
  7.