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

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