minix/lib/libc/ansi/islower.c

6 lines
65 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
#include <ctype.h>
int (islower)(int c) {
return islower(c);
}