minix/lib/ansi/isgraph.c

6 lines
65 B
C
Raw Normal View History

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