xref: /freebsd/lib/libc/stdio/fgets.3 (revision 7381dcc9eeb7da1b1ba103212e15561e14b48a8d)
158f0484fSRodney W. Grimes.\" Copyright (c) 1990, 1991, 1993
258f0484fSRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
358f0484fSRodney W. Grimes.\"
458f0484fSRodney W. Grimes.\" This code is derived from software contributed to Berkeley by
558f0484fSRodney W. Grimes.\" Chris Torek and the American National Standards Committee X3,
658f0484fSRodney W. Grimes.\" on Information Processing Systems.
758f0484fSRodney W. Grimes.\"
858f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
958f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions
1058f0484fSRodney W. Grimes.\" are met:
1158f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
1258f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
1358f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
1458f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
1558f0484fSRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
16fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors
1758f0484fSRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
1858f0484fSRodney W. Grimes.\"    without specific prior written permission.
1958f0484fSRodney W. Grimes.\"
2058f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2158f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2258f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2358f0484fSRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2458f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2558f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2658f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2758f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2858f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2958f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3058f0484fSRodney W. Grimes.\" SUCH DAMAGE.
3158f0484fSRodney W. Grimes.\"
3258f0484fSRodney W. Grimes.\"     @(#)fgets.3	8.1 (Berkeley) 6/4/93
337f3dea24SPeter Wemm.\" $FreeBSD$
3458f0484fSRodney W. Grimes.\"
35*7381dcc9SEd Maste.Dd September 1, 2019
3658f0484fSRodney W. Grimes.Dt FGETS 3
3758f0484fSRodney W. Grimes.Os
3858f0484fSRodney W. Grimes.Sh NAME
3958f0484fSRodney W. Grimes.Nm fgets ,
407ad6003dSCy Schubert.Nm gets_s
4158f0484fSRodney W. Grimes.Nd get a line from a stream
4225bb73e0SAlexey Zelkin.Sh LIBRARY
4325bb73e0SAlexey Zelkin.Lb libc
4458f0484fSRodney W. Grimes.Sh SYNOPSIS
4532eef9aeSRuslan Ermilov.In stdio.h
4658f0484fSRodney W. Grimes.Ft char *
4754e4e385SMike Barcroft.Fn fgets "char * restrict str" "int size" "FILE * restrict stream"
4858f0484fSRodney W. Grimes.Ft char *
49a77546fbSCy Schubert.Fn gets_s "char *str" "rsize_t size"
5058f0484fSRodney W. Grimes.Sh DESCRIPTION
5158f0484fSRodney W. GrimesThe
5258f0484fSRodney W. Grimes.Fn fgets
5358f0484fSRodney W. Grimesfunction
5458f0484fSRodney W. Grimesreads at most one less than the number of characters specified by
55fe20c3b6SBruce Evans.Fa size
5658f0484fSRodney W. Grimesfrom the given
5758f0484fSRodney W. Grimes.Fa stream
5858f0484fSRodney W. Grimesand stores them in the string
5958f0484fSRodney W. Grimes.Fa str .
6058f0484fSRodney W. GrimesReading stops when a newline character is found,
6158f0484fSRodney W. Grimesat end-of-file or error.
6258f0484fSRodney W. GrimesThe newline, if any, is retained.
63fe20c3b6SBruce EvansIf any characters are read and there is no error, a
6458f0484fSRodney W. Grimes.Ql \e0
6558f0484fSRodney W. Grimescharacter is appended to end the string.
6658f0484fSRodney W. Grimes.Pp
6758f0484fSRodney W. GrimesThe
68a77546fbSCy Schubert.Fn gets_s
69a77546fbSCy Schubertfunction
70a77546fbSCy Schubertis equivalent to
71a77546fbSCy Schubert.Fn fgets
72a77546fbSCy Schubertwith a
73a77546fbSCy Schubert.Fa stream
74a77546fbSCy Schubertof
75a77546fbSCy Schubert.Dv stdin ,
76a77546fbSCy Schubertexcept that the newline character (if any) is not stored in the string.
77a77546fbSCy Schubert.Pp
78a77546fbSCy SchubertThe
7958f0484fSRodney W. Grimes.Fn gets
8058f0484fSRodney W. Grimesfunction
81*7381dcc9SEd Mastewas unsafe and is no longer available.
8258f0484fSRodney W. Grimes.Sh RETURN VALUES
8358f0484fSRodney W. GrimesUpon successful completion,
84*7381dcc9SEd Maste.Fn fgets
8558f0484fSRodney W. Grimesand
86*7381dcc9SEd Maste.Fn gets_s
8758f0484fSRodney W. Grimesreturn
8858f0484fSRodney W. Grimesa pointer to the string.
89fe20c3b6SBruce EvansIf end-of-file occurs before any characters are read,
9058f0484fSRodney W. Grimesthey return
91fe20c3b6SBruce Evans.Dv NULL
926accdce9SArchie Cobbsand the buffer contents remain unchanged.
93fe20c3b6SBruce EvansIf an error occurs,
94fe20c3b6SBruce Evansthey return
95fe20c3b6SBruce Evans.Dv NULL
966accdce9SArchie Cobbsand the buffer contents are indeterminate.
9758f0484fSRodney W. GrimesThe
98*7381dcc9SEd Maste.Fn fgets
9958f0484fSRodney W. Grimesand
100*7381dcc9SEd Maste.Fn gets_s
101fe20c3b6SBruce Evansfunctions
10258f0484fSRodney W. Grimesdo not distinguish between end-of-file and error, and callers must use
10358f0484fSRodney W. Grimes.Xr feof 3
10458f0484fSRodney W. Grimesand
10558f0484fSRodney W. Grimes.Xr ferror 3
10658f0484fSRodney W. Grimesto determine which occurred.
10758f0484fSRodney W. Grimes.Sh ERRORS
10803fc6303SAlexey Zelkin.Bl -tag -width Er
10958f0484fSRodney W. Grimes.It Bq Er EBADF
11058f0484fSRodney W. GrimesThe given
11158f0484fSRodney W. Grimes.Fa stream
11258f0484fSRodney W. Grimesis not a readable stream.
11358f0484fSRodney W. Grimes.El
11458f0484fSRodney W. Grimes.Pp
11558f0484fSRodney W. GrimesThe function
11658f0484fSRodney W. Grimes.Fn fgets
11758f0484fSRodney W. Grimesmay also fail and set
11858f0484fSRodney W. Grimes.Va errno
11958f0484fSRodney W. Grimesfor any of the errors specified for the routines
12058f0484fSRodney W. Grimes.Xr fflush 3 ,
12158f0484fSRodney W. Grimes.Xr fstat 2 ,
12258f0484fSRodney W. Grimes.Xr read 2 ,
12358f0484fSRodney W. Grimesor
12458f0484fSRodney W. Grimes.Xr malloc 3 .
12558f0484fSRodney W. Grimes.Pp
12658f0484fSRodney W. GrimesThe function
1273ad12d27SCy Schubert.Fn gets_s
12858f0484fSRodney W. Grimesmay also fail and set
12958f0484fSRodney W. Grimes.Va errno
13058f0484fSRodney W. Grimesfor any of the errors specified for the routine
13158f0484fSRodney W. Grimes.Xr getchar 3 .
1320afc94c1SUlrich Spörlein.Sh SEE ALSO
1330afc94c1SUlrich Spörlein.Xr feof 3 ,
1340afc94c1SUlrich Spörlein.Xr ferror 3 ,
1350afc94c1SUlrich Spörlein.Xr fgetln 3 ,
1360afc94c1SUlrich Spörlein.Xr fgetws 3 ,
1370afc94c1SUlrich Spörlein.Xr getline 3
1380afc94c1SUlrich Spörlein.Sh STANDARDS
139*7381dcc9SEd MasteThe
1400afc94c1SUlrich Spörlein.Fn fgets
141*7381dcc9SEd Mastefunction conforms to
1420afc94c1SUlrich Spörlein.St -isoC-99 .
143a77546fbSCy Schubert.Fn gets_s
144a77546fbSCy Schubertconforms to
145a77546fbSCy Schubert.St -isoC-2011
146a77546fbSCy SchubertK.3.7.4.1.
147a77546fbSCy Schubert.Fn gets
148a77546fbSCy Schuberthas been removed from
149a77546fbSCy Schubert.St -isoC-2011 .
150