mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:17:44 +00:00
Kernel: Finally stop exposing Region members to the public.
This commit is contained in:
parent
e683f611f1
commit
aa24547e12
9 changed files with 132 additions and 106 deletions
|
@ -9,7 +9,7 @@ int ispunct(int c)
|
|||
|
||||
int isprint(int c)
|
||||
{
|
||||
return c >= 0x20 && c != 0x7f;
|
||||
return isdigit(c) || isupper(c) || islower(c) || ispunct(c) || isspace(c);
|
||||
}
|
||||
|
||||
int isalnum(int c)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue