1 /* Copyright (C) 1991, 1992, 1995 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA. */
24 /* Reads characters from STREAM into S, until either a newline character
25 is read, N - 1 characters have been read, or EOF is seen. Returns
26 the newline, unlike gets. Finishes by appending a null character and
27 returning S. If EOF is seen before any characters have been written
28 to S, the function returns NULL without appending the null character.
29 If there is a file error, always return NULL. */
31 DEFUN(fgets
, (s
, n
, stream
), char *s AND
int n AND
register FILE *stream
)
35 if (!__validfp(stream
) || s
== NULL
|| n
<= 0)
44 if (stream
->__buffer
== NULL
&& stream
->__userbuf
)
46 /* Unbuffered stream. Not much optimization to do. */
48 while (--n
> 0 && (c
= getc (stream
)) != EOF
)
49 if ((*p
++ = c
) == '\n')
51 if (c
== EOF
&& (p
== s
|| ferror (stream
)))
57 /* Leave space for the null. */
61 (!stream
->__seen
|| stream
->__buffer
== NULL
|| stream
->__pushed_back
))
63 /* Do one with getc to allocate a buffer. */
64 int c
= getc (stream
);
82 i
= stream
->__get_limit
- stream
->__bufp
;
85 /* Refill the buffer. */
86 int c
= __fillbf (stream
);
96 i
= stream
->__get_limit
- stream
->__bufp
;
102 found
= (char *) __memccpy ((PTR
) p
, stream
->__bufp
, '\n', i
);
106 stream
->__bufp
+= found
- p
;
120 return ferror (stream
) ? NULL
: s
;