gbdk-releases/gbdk-lib/libc/islower.c

10 lines
110 B
C
Raw Permalink Normal View History

2015-01-10 16:25:06 +01:00
#include <ctype.h>
2015-01-10 16:25:09 +01:00
BOOLEAN islower(char c)
2015-01-10 16:25:06 +01:00
{
if(c >= 'a' && c <= 'z')
return 1;
else
return 0;
}