minix/lib/libc/ansi/isgraph.c

6 lines
65 B
C

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