Files
minix/lib/libc/ansi/islower.c
T

6 lines
65 B
C

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