]> git.saurik.com Git - apple/libc.git/blame - stdio/FreeBSD/fgetwln.3
Libc-997.1.1.tar.gz
[apple/libc.git] / stdio / FreeBSD / fgetwln.3
CommitLineData
1f2f436a
A
1.\" Copyright (c) 1990, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\" notice, this list of conditions and the following disclaimer in the
11.\" documentation and/or other materials provided with the distribution.
12.\" 4. Neither the name of the University nor the names of its contributors
13.\" may be used to endorse or promote products derived from this software
14.\" without specific prior written permission.
15.\"
16.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
28.\" @(#)fgetln.3 8.3 (Berkeley) 4/19/94
29.\" $FreeBSD: src/lib/libc/stdio/fgetwln.3,v 1.3 2007/01/09 00:28:06 imp Exp $
30.\"
31.Dd July 16, 2004
32.Dt FGETWLN 3
33.Os
34.Sh NAME
ad3c9f2a
A
35.Nm fgetwln ,
36.Nm fgetwln_l
1f2f436a
A
37.Nd get a line of wide characters from a stream
38.Sh LIBRARY
39.Lb libc
40.Sh SYNOPSIS
41.In stdio.h
42.In wchar.h
43.Ft wchar_t *
44.Fn fgetwln "FILE * restrict stream" "size_t * restrict len"
ad3c9f2a
A
45.In xlocale.h
46.Ft wchar_t *
47.Fn fgetwln_l "FILE * restrict stream" "size_t * restrict len" "locale_t loc"
1f2f436a
A
48.Sh DESCRIPTION
49The
50.Fn fgetwln
51function
52returns a pointer to the next line from the stream referenced by
53.Fa stream .
54This line is
55.Em not
56a standard wide character string as it does not end with a terminating
57null wide character.
58The length of the line, including the final newline,
59is stored in the memory location to which
60.Fa len
61points.
62(Note, however, that if the line is the last
63in a file that does not end in a newline,
64the returned text will not contain a newline.)
ad3c9f2a
A
65.Pp
66While the
67.Fn fgetwln
68function uses the current locale, the
69.Fn fgetwln_l
70function may be passed a locale directly. See
71.Xr xlocale 3
72for more information.
1f2f436a
A
73.Sh RETURN VALUES
74Upon successful completion a pointer is returned;
75this pointer becomes invalid after the next
76.Tn I/O
77operation on
78.Fa stream
79(whether successful or not)
80or as soon as the stream is closed.
81Otherwise,
82.Dv NULL
83is returned.
84The
85.Fn fgetwln
86function
87does not distinguish between end-of-file and error; the routines
88.Xr feof 3
89and
90.Xr ferror 3
91must be used
92to determine which occurred.
93If an error occurs, the global variable
94.Va errno
95is set to indicate the error.
96The end-of-file condition is remembered, even on a terminal, and all
97subsequent attempts to read will return
98.Dv NULL
99until the condition is
100cleared with
101.Xr clearerr 3 .
102.Pp
103The text to which the returned pointer points may be modified,
104provided that no changes are made beyond the returned size.
105These changes are lost as soon as the pointer becomes invalid.
106.Sh ERRORS
107.Bl -tag -width Er
108.It Bq Er EBADF
109The argument
110.Fa stream
111is not a stream open for reading.
112.El
113.Pp
114The
115.Fn fgetwln
116function
117may also fail and set
118.Va errno
119for any of the errors specified for the routines
120.Xr mbrtowc 3 ,
121.Xr realloc 3 ,
122or
123.Xr read 2 .
124.Sh SEE ALSO
125.Xr ferror 3 ,
126.Xr fgetln 3 ,
127.Xr fgetws 3 ,
ad3c9f2a
A
128.Xr fopen 3 ,
129.Xr xlocale 3