Main index | Section 3 | 日本語 | Deutsch | Options |
#include <stdio.h>
The putc() macro acts essentially identically to fputc(), but is a macro that expands in-line. It may evaluate stream more than once, so arguments given to putc() should not be expressions with potential side effects.
The putchar() function is identical to putc() with an output stream of stdout.
The putw() function writes the specified int to the named output stream.
The fputc_unlocked(), putc_unlocked(), and putchar_unlocked() functions are equivalent to fputc(), putc(), and putchar() respectively, except that the caller is responsible for locking the stream with flockfile(3) before calling them. These functions may be used to avoid the overhead of locking the stream for each character, and to avoid output being interspersed from multiple threads writing to the same stream.
PUTC (3) | January 23, 2020 |
Main index | Section 3 | 日本語 | Deutsch | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.