FENIX_libc/ctype/isascii.c

5 lines
74 B
C

#include <ctype.h>
int isascii(int c) {
return (c >= 0 && c <= 0177);
}