11 lines
No EOL
284 B
C++
11 lines
No EOL
284 B
C++
#include <ctype.h>
|
|
#include "_ctype.h"
|
|
#include <assert.h>
|
|
extern "C" int isgraph(int c) {
|
|
assert(c<256);
|
|
return ascii_table[c] & (SYMBOL|UPPER|LOWER|NUMBER);
|
|
}
|
|
extern "C" int isprint(int c) {
|
|
assert(c<256);
|
|
return ascii_table[c] & (SYMBOL|UPPER|LOWER|NUMBER|SPACE);
|
|
} |