This commit is contained in:
Morten Delenk 2016-07-27 15:10:18 +02:00
parent dbcb30ebea
commit 1699c8693a
No known key found for this signature in database
GPG key ID: 3F818D0F65DCB490

View file

@ -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);
}