FENIX_libc/ctype/ispunct.c

5 lines
93 B
C

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