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