FENIX_libc/ctype/ispunct.c

5 lines
93 B
C

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