FENIX_libc/ctype/isascii.c
2020-12-13 04:55:41 -06:00

5 lines
No EOL
74 B
C

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