7 lines
149 B
C++
7 lines
149 B
C++
|
#include <ctype.h>
|
||
|
#include "_ctype.h"
|
||
|
#include <assert.h>
|
||
|
extern "C" int ispunct(int c) {
|
||
|
assert(c<256);
|
||
|
return ascii_table[c] & (SYMBOL);
|
||
|
}
|