Browse Source

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>
alistair/rv32.next
Carlos O'Donell 6 years ago
parent
commit
b8de7980c0
  1. 2
      manual/charset.texi

2
manual/charset.texi

@ -186,7 +186,7 @@ are used:
@{
wint_t c;
@dots{}
while ((c = wgetc (fp)) != WEOF)
while ((c = getwc (fp)) != WEOF)
@dots{}
@}
@end smallexample

Loading…
Cancel
Save