PUTWC(3) | Library Functions Manual | PUTWC(3) |
wint_t
fputwc(wchar_t wc, FILE *stream);
wint_t
putwc(wchar_t wc, FILE *stream);
wint_t
putwchar(wchar_t wc);
putwc() acts essentially identically to fputwc(), but is a macro that expands in-line. It may evaluate stream more than once, so arguments given to putwc() should not be expressions with potential side effects.
putwchar() is identical to putwc() with an output stream of stdout.
October 20, 2001 | NetBSD 6.1 |