OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man3 / getw.3
1 .\" Copyright (c) 1995 by Jim Van Zandt <jrv@vanzandt.mv.com>
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .TH GETW 3  2010-09-26 "GNU" "Linux Programmer's Manual"
26 .SH NAME
27 getw, putw \- input and output of words (ints)
28 .SH SYNOPSIS
29 .nf
30 .B #include <stdio.h>
31 .sp
32 .BI "int getw(FILE *" stream );
33
34 .BI "int putw(int " w ", FILE *" stream );
35 .fi
36 .sp
37 .in -4n
38 Feature Test Macro Requirements for glibc (see
39 .BR feature_test_macros (7)):
40 .in
41 .sp
42 .BR getw (),
43 .BR putw ():
44 .ad l
45 .PD 0
46 .RS 4
47 .TP 4
48 Since glibc 2.3.3:
49 _SVID_SOURCE || _BSD_SOURCE ||
50 .br
51 (_XOPEN_SOURCE &&
52     !(_POSIX_C_SOURCE\ >=\ 200112L || _XOPEN_SOURCE\ >=\ 600))
53 .TP
54 Before glibc 2.3.3:
55 _SVID_SOURCE || _BSD_SOURCE || _XOPEN_SOURCE
56 .RE
57 .PD
58 .ad
59 .SH DESCRIPTION
60 .BR getw ()
61 reads a word (that is, an \fIint\fP) from \fIstream\fP.
62 It's provided for compatibility with SVr4.
63 We recommend you use
64 .BR fread (3)
65 instead.
66 .P
67 .BR putw ()
68 writes the word \fIw\fP (that is,
69 an \fIint\fP) to \fIstream\fP.
70 It is provided for compatibility with SVr4, but we recommend you use
71 .BR fwrite (3)
72 instead.
73 .SH RETURN VALUE
74 Normally,
75 .BR getw ()
76 returns the word read, and
77 .BR putw ()
78 returns 0.
79 On error, they return \fBEOF\fP.
80 .SH CONFORMING TO
81 SVr4, SUSv2.
82 Not present in POSIX.1-2001.
83 .SH BUGS
84 The value returned on error is also a legitimate data value.
85 .BR ferror (3)
86 can be used to distinguish between the two cases.
87 .SH SEE ALSO
88 .BR ferror (3),
89 .BR fread (3),
90 .BR fwrite (3),
91 .BR getc (3),
92 .BR putc (3)
93 .SH COLOPHON
94 This page is part of release 3.68 of the Linux
95 .I man-pages
96 project.
97 A description of the project,
98 information about reporting bugs,
99 and the latest version of this page,
100 can be found at
101 \%http://www.kernel.org/doc/man\-pages/.