home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD1.img
/
d1xx
/
d164
/
c-functions
/
lower.c
< prev
next >
Wrap
C/C++ Source or Header
|
1988-11-22
|
179b
|
10 lines
#include <exec/types.h>
int lower(c) /* Convert c to lower case; non-Swedish ASCII */
register int c;
{
return ((c >= 'A' && c <= 'Z') ? (c - 'A' + 'a') : c);
}