xref: /dragonfly/lib/libc/stdio/fgetws.3 (revision 0ca59c34)
1.\" Copyright (c) 1990, 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" This code is derived from software contributed to Berkeley by
5.\" Chris Torek and the American National Standards Committee X3,
6.\" on Information Processing Systems.
7.\"
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
11.\" 1. Redistributions of source code must retain the above copyright
12.\"    notice, this list of conditions and the following disclaimer.
13.\" 2. Redistributions in binary form must reproduce the above copyright
14.\"    notice, this list of conditions and the following disclaimer in the
15.\"    documentation and/or other materials provided with the distribution.
16.\" 3. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\"     @(#)fgets.3	8.1 (Berkeley) 6/4/93
33.\" $FreeBSD: head/lib/libc/stdio/fgetws.3 165903 2007-01-09 00:28:16Z imp $
34.\"
35.Dd December 26, 2013
36.Dt FGETWS 3
37.Os
38.Sh NAME
39.Nm fgetws ,
40.Nm fgetws_l
41.Nd get a line of wide characters from a stream
42.Sh LIBRARY
43.Lb libc
44.Sh SYNOPSIS
45.In stdio.h
46.In wchar.h
47.Ft "wchar_t *"
48.Fn fgetws "wchar_t * restrict ws" "int n" "FILE * restrict fp"
49.In xlocale.h
50.Ft "wchar_t *"
51.Fn fgetws_l "wchar_t * restrict ws" "int n" "FILE * restrict fp" "locale_t locale"
52.Sh DESCRIPTION
53The
54.Fn fgetws
55and
56.Fn fgetws_l
57functions read at most one less than the number of characters specified by
58.Fa n
59from the given
60.Fa fp
61and store them in the wide character string
62.Fa ws .
63Reading stops when a newline character is found,
64at end-of-file or error.
65The newline, if any, is retained.
66If any characters are read and there is no error, a
67.Ql \e0
68character is appended to end the string.
69.Pp
70The
71.Fn fgetws_l
72function takes an explicit
73.Fa locale
74argument, whereas the
75.Fn fgetws
76function uses the current global or per-thread locale.
77.Sh RETURN VALUES
78Upon successful completion,
79.Fn fgetws
80and
81.Fn fgetws_l
82return
83.Fa ws .
84If end-of-file occurs before any characters are read,
85.Fn fgetws
86and
87.Fn fgetws_l
88return
89.Dv NULL
90and the buffer contents remain unchanged.
91If an error occurs,
92.Fn fgetws
93and
94.Fn fgetws_l
95return
96.Dv NULL
97and the buffer contents are indeterminate.
98The
99.Fn fgetws
100and
101.Fn fgetws_l
102functions
103do not distinguish between end-of-file and error, and callers must use
104.Xr feof 3
105and
106.Xr ferror 3
107to determine which occurred.
108.Sh ERRORS
109The
110.Fn fgetws
111and
112.Fn fgetws_l
113functions will fail if:
114.Bl -tag -width Er
115.It Bq Er EBADF
116The given
117.Fa fp
118argument is not a readable stream.
119.It Bq Er EILSEQ
120The data obtained from the input stream does not form a valid
121multibyte character.
122.El
123.Pp
124The functions
125.Fn fgetws
126and
127.Fn fgetws_l
128may also fail and set
129.Va errno
130for any of the errors specified for the routines
131.Xr fflush 3 ,
132.Xr fstat 2 ,
133.Xr read 2 ,
134or
135.Xr malloc 3 .
136.Sh SEE ALSO
137.Xr feof 3 ,
138.Xr ferror 3 ,
139.Xr fgets 3 ,
140.Xr xlocale 3
141.Sh STANDARDS
142The
143.Fn fgetws
144function
145conforms to
146.St -p1003.1-2001 .
147