mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 06:09:08 +00:00
LibC: Use __inline_isascii() in isascii()
This commit is contained in:
parent
3df7f868e8
commit
1e1de4a542
Notes:
sideshowbarker
2024-07-18 20:21:06 +09:00
Author: https://github.com/gunnarbeutner
Commit: 1e1de4a542
Pull-request: https://github.com/SerenityOS/serenity/pull/6253
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