FENIX_libc/ctype/iscntrl.c

5 lines
85 B
C
Raw Permalink Normal View History

2020-12-13 10:55:41 +00:00
#include <ctype.h>
int iscntrl(int c) {
return ((c >= 0 && c < 32) || c == 127);
}