minix/lib/ansi/isalpha.c
2009-11-09 10:26:00 +00:00

6 lines
65 B
C

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