minix/lib/ansi/islower.c
2005-04-21 14:53:53 +00:00

6 lines
65 B
C
Executable file

#include <ctype.h>
int (islower)(int c) {
return islower(c);
}