forked from KolibriOS/kolibrios
10 lines
178 B
C
10 lines
178 B
C
|
#include <stdlib.h>
|
||
|
/*
|
||
|
** return lower-case of c if upper-case, else c
|
||
|
*/
|
||
|
unsigned char tolower(unsigned char c)
|
||
|
{
|
||
|
if(c<='Z' && c>='A') return (c+32);
|
||
|
return (c);
|
||
|
}
|