mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:07:45 +00:00
LibC: Remove isfoo() declarations from ctype.h
We'll keep the definitions in ctype.cpp so you can link against them but there's no reason to have competing declarations and macros.
This commit is contained in:
parent
92e2afe584
commit
2ba06662b6
1 changed files with 0 additions and 12 deletions
|
@ -45,18 +45,6 @@ extern const char _ctype_[256];
|
||||||
|
|
||||||
int tolower(int);
|
int tolower(int);
|
||||||
int toupper(int);
|
int toupper(int);
|
||||||
int isalnum(int);
|
|
||||||
int isalpha(int);
|
|
||||||
int iscntrl(int);
|
|
||||||
int isdigit(int);
|
|
||||||
int isxdigit(int);
|
|
||||||
int isspace(int);
|
|
||||||
int ispunct(int);
|
|
||||||
int isprint(int);
|
|
||||||
int isgraph(int);
|
|
||||||
int islower(int);
|
|
||||||
int isupper(int);
|
|
||||||
int isblank(int);
|
|
||||||
|
|
||||||
#define isalnum(c) (_ctype_[(int)(c)] & (_U | _L | _N))
|
#define isalnum(c) (_ctype_[(int)(c)] & (_U | _L | _N))
|
||||||
#define isalpha(c) (_ctype_[(int)(c)] & (_U | _L))
|
#define isalpha(c) (_ctype_[(int)(c)] & (_U | _L))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue