Warning: main(/www/www/htdocs/style/globals.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/f/fputwc.html on line 1
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/globals.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/f/fputwc.html on line 1
Warning: main(/www/www/htdocs/style/header.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/f/fputwc.html on line 8
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/header.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/f/fputwc.html on line 8
Write a wide character to a stream
#include <wchar.h>
wint_t fputwc( wchar_t wc,
FILE * fp );
- wc
- The wide character you want to write.
- fp
- The stream you want to write the character to.
libc
Use the -l c option to
qcc
to link against this library.
This library is usually included automatically.
The fputwc() function writes the wide character specified by wc, cast as (wint_t)(wchar_t), to the stream specified by fp.
The wide character written, cast as (wint_t)(wchar_t), or WEOF if an error occurred (errno
is set).
|
If wc exceeds the valid wide-character range, the value returned
is the wide character written, not wc. |
- EAGAIN
- The O_NONBLOCK flag is set for fp and would have been blocked by this operation.
- EBADF
- The stream specified by fp isn't valid for writing.
- EFBIG
- The file exceeds the maximum file size, the process's file size limit, or the function can't write at or beyond the offset maximum.
- EINTR
- A signal terminated the write operation; no data was transferred.
- EIO
- A physical I/O error has occurred or all of the following conditions were met:
- The process is in the background.
- TOSTOP is set.
- The process is blocking/ignoring SIGTTOU.
- The process group is orphaned.
- EPIPE
- Can't write to pipe or FIFO because it's closed;
a SIGPIPE signal is also sent to the thread.
ANSI,
POSIX 1003.1
Safety: | |
Cancellation point |
Yes |
Interrupt handler |
No |
Signal handler |
No |
Thread |
Yes |
errno,
fgetwc(),
fgetws(),
fputc(),
fputws()
Warning: main(/www/www/htdocs/style/footer.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/neutrino/lib_ref/f/fputwc.html on line 182
Warning: main() [function.include]: Failed opening '/www/www/htdocs/style/footer.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/neutrino/lib_ref/f/fputwc.html on line 182