wat
This commit is contained in:
parent
dbcb30ebea
commit
1699c8693a
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
#include <ctype.h>
|
||||
#include "_ctype.h"
|
||||
#include <assert.h>
|
||||
extern "C" isalpha(int c) {
|
||||
extern "C" int isalpha(int c) {
|
||||
assert(c<256);
|
||||
return ascii_table[c] & (UPPER|LOWER);
|
||||
}
|
Loading…
Reference in a new issue