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