home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
c
/
jplc1.arc
/
TOLOWER.C
< prev
next >
Wrap
Text File
|
1988-07-22
|
593b
|
21 lines
/* 1.0 07-06-84 */
/************************************************************************
* Robert C. Tausworthe *
* Jet Propulsion Laboratory *
* Pasadena, CA 91009 1984 *
************************************************************************/
#include "defs.h"
#include "stdtyp.h"
#include "ctype.h"
/************************************************************************/
int
tolower(c) /* returns lower case of c, if a letter. */
/*----------------------------------------------------------------------*/
int c;
{
return (TOLOWER(c));
}