mirror of
https://github.com/RGBCube/serenity
synced 2025-06-18 20:42:09 +00:00
LibC: Use __inline_isascii() in isascii()
This commit is contained in:
parent
3df7f868e8
commit
1e1de4a542
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ int islower(int c)
|
||||||
#undef isascii
|
#undef isascii
|
||||||
int isascii(int c)
|
int isascii(int c)
|
||||||
{
|
{
|
||||||
return ((unsigned)c <= 127);
|
return __inline_isascii(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
#undef isblank
|
#undef isblank
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue