mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 21:40:33 +00:00
LibC: Oops, unbreak isprint() once again.
This commit is contained in:
parent
6208cef154
commit
3a401d5249
Notes:
sideshowbarker
2024-07-19 15:56:40 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/3a401d5249a
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ int ispunct(int c)
|
|||
|
||||
int isprint(int c)
|
||||
{
|
||||
return isdigit(c) || isupper(c) || islower(c) || ispunct(c) || isspace(c);
|
||||
return c >= 0x20 && c != 0x7f;
|
||||
}
|
||||
|
||||
int isalnum(int c)
|
||||
|
|
Loading…
Reference in a new issue