mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03: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: https://github.com/SerenityOS/serenity/commit/1e1de4a5424 Pull-request: https://github.com/SerenityOS/serenity/pull/6253
@ -116,7 +116,7 @@ int islower(int c)
|
||||
#undef isascii
|
||||
int isascii(int c)
|
||||
{
|
||||
return ((unsigned)c <= 127);
|
||||
return __inline_isascii(c);
|
||||
}
|
||||
|
||||
#undef isblank
|
||||
|
Loading…
Reference in New Issue
Block a user