mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:17:36 +00:00
Add getpwent() family of functions to LibC.
Also add a little /etc/passwd database. There's just me in there.
This commit is contained in:
parent
819ce91395
commit
9886b27d9c
17 changed files with 175 additions and 25 deletions
|
@ -9,7 +9,7 @@ ALWAYS_INLINE int isascii(int ch)
|
|||
|
||||
ALWAYS_INLINE int isspace(int ch)
|
||||
{
|
||||
return ch == ' ' || ch == '\f' || ch == '\n' || ch == '\r' || ch == '\t' == '\v';
|
||||
return ch == ' ' || ch == '\f' || ch == '\n' || ch == '\r' || ch == '\t' || ch == '\v';
|
||||
}
|
||||
|
||||
ALWAYS_INLINE int islower(int c)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue