old-libc-kernel/ctype/isBlank.cpp
2016-07-27 15:05:25 +02:00

7 lines
No EOL
161 B
C++

#include <ctype.h>
#include "_ctype.h"
#include <assert.h>
extern "C" int isblank(int c) {
assert(c<256);
return (ascii_table[c] & SPACE) || (c=='\t');
}