old-libc-kernel/ctype/isASCII.cpp

5 lines
102 B
C++
Raw Normal View History

2016-07-27 13:03:34 +00:00
#include <ctype.h>
#include "_ctype.h"
2016-07-27 13:05:25 +00:00
extern "C" int isascii(int c) {
2016-07-27 13:03:34 +00:00
return c >= 0 && c < 128;
}