/************************************************************* * File: lib/tolower.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */ #include "string.h" /** tolower(c) translate c to lower */ int tolower(c) int c; { if (isupper(c)) return(c + ('a'-'A')); return(c); }