FENIX_libc/ctype/iscntrl.c
2020-12-13 04:55:41 -06:00

5 lines
85 B
C

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