FENIX_libc/ctype/iscntrl.c

5 lines
85 B
C

#include <ctype.h>
int iscntrl(int c) {
return ((c >= 0 && c < 32) || c == 127);
}