/************************************************************* * File: lib/islower.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */ /** islower(c) returns true if c is lower case */ islower(c) int c; { if (c >= 'a' && c <= 'z') return(1); return(0); }