mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibC: Implement getwchar()
This commit is contained in:
parent
cf17677206
commit
a4e8a09188
Notes:
sideshowbarker
2024-07-17 22:29:41 +09:00
Author: https://github.com/alimpfard
Commit: a4e8a09188
Pull-request: https://github.com/SerenityOS/serenity/pull/11324
Reviewed-by: https://github.com/BertalanD
2 changed files with 6 additions and 0 deletions
|
@ -56,4 +56,9 @@ wint_t getwc(FILE* stream)
|
|||
{
|
||||
return fgetwc(stream);
|
||||
}
|
||||
|
||||
wint_t getwchar()
|
||||
{
|
||||
return getwc(stdin);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue