mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
Extended Char Intro: Use getwc in example (Bug 25626)
In the "Extended Char Intro" the example incorrectly uses a function called wgetc which doesn't exist. The example is corrected to use getwc, which is correct for the use in this case. Reported-by: Toomas Rosin <toomas@rosin.ee>
This commit is contained in:
parent
910a835dc9
commit
b8de7980c0
@ -186,7 +186,7 @@ are used:
|
||||
@{
|
||||
wint_t c;
|
||||
@dots{}
|
||||
while ((c = wgetc (fp)) != WEOF)
|
||||
while ((c = getwc (fp)) != WEOF)
|
||||
@dots{}
|
||||
@}
|
||||
@end smallexample
|
||||
|
Loading…
Reference in New Issue
Block a user