toaruos/libc/ctype/ispunct.c
2018-05-04 12:17:32 +09:00

6 lines
81 B
C

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