old-libc-kernel/ctype/isBlank.cpp

7 lines
161 B
C++
Raw Normal View History

2016-07-27 13:03:34 +00:00
#include <ctype.h>
#include "_ctype.h"
#include <assert.h>
2016-07-27 13:05:25 +00:00
extern "C" int isblank(int c) {
2016-07-27 13:03:34 +00:00
assert(c<256);
return (ascii_table[c] & SPACE) || (c=='\t');
}