getw, putw - input and output of words (ints)
Standard C library (libc
, -lc
)
#include <stdio.h>
int getw(FILE *stream);
int putw(int w, FILE *stream);
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
For an explanation of the terms used in this section, see attributes(7).
Interface | Attribute | Value |
Thread safety | MT-Safe |
None.
SVr4, SUSv2.
The value returned on error is also a legitimate data value. ferror(3) can be used to distinguish between the two cases.