getw, putw - input and output of words (ints)
#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 |
getw(), putw() | Thread safety | MT-Safe |
SVr4, SUSv2. Not present in POSIX.1.
The value returned on error is also a legitimate data value. ferror(3) can be used to distinguish between the two cases.
This page is part of release 4.15 of the Linux man-pages
project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.