5 lines
No EOL
74 B
C
5 lines
No EOL
74 B
C
#include <ctype.h>
|
|
|
|
int isascii(int c) {
|
|
return (c >= 0 && c <= 0177);
|
|
} |