toaruos/libc/ctype/ispunct.c

6 lines
81 B
C
Raw Normal View History

2018-05-04 06:17:32 +03:00
#include <ctype.h>
int ispunct(int c) {
return isgraph(c) && !isalnum(c);
}