minix/lib/libc/ansi/islower.c

6 lines
65 B
C

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