]> git.ipfire.org Git - thirdparty/glibc.git/blame - libio/iogets.c
Update.
[thirdparty/glibc.git] / libio / iogets.c
CommitLineData
40a55d20
UD
1/* Copyright (C) 1993, 1996, 1997 Free Software Foundation, Inc.
2 This file is part of the GNU IO Library.
96aa2d94 3
40a55d20
UD
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License as
6 published by the Free Software Foundation; either version 2, or (at
7 your option) any later version.
96aa2d94 8
40a55d20
UD
9 This library is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
96aa2d94 13
40a55d20
UD
14 You should have received a copy of the GNU General Public License
15 along with this library; see the file COPYING. If not, write to
16 the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
17 MA 02111-1307, USA.
96aa2d94 18
40a55d20
UD
19 As a special exception, if you link this library with files
20 compiled with a GNU compiler to produce an executable, this does
21 not cause the resulting executable to be covered by the GNU General
22 Public License. This exception does not however invalidate any
23 other reasons why the executable file might be covered by the GNU
24 General Public License. */
96aa2d94
RM
25
26#include "libioP.h"
27#include <limits.h>
28
29char*
30_IO_gets (buf)
40a55d20 31 char *buf;
96aa2d94
RM
32{
33 _IO_size_t count;
7c713e28 34 int ch;
8a4b65b4 35 char *retval;
7c713e28 36
68dbb3a6
UD
37 _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile,
38 _IO_stdin);
7c713e28
RM
39 _IO_flockfile (_IO_stdin);
40 ch = _IO_getc_unlocked (_IO_stdin);
96aa2d94 41 if (ch == EOF)
8a4b65b4
UD
42 {
43 retval = NULL;
44 goto unlock_return;
45 }
96aa2d94
RM
46 if (ch == '\n')
47 count = 0;
48 else
49 {
bd355af0
UD
50 /* This is very tricky since a file descriptor may be in the
51 non-blocking mode. The error flag doesn't mean much in this
52 case. We return an error only when there is a new error. */
53 int old_error = _IO_stdin->_IO_file_flags & _IO_ERR_SEEN;
54 _IO_stdin->_IO_file_flags &= ~_IO_ERR_SEEN;
40a55d20 55 buf[0] = (char) ch;
96aa2d94
RM
56 count = _IO_getline (_IO_stdin, buf + 1, INT_MAX, '\n', 0) + 1;
57 if (_IO_stdin->_IO_file_flags & _IO_ERR_SEEN)
8a4b65b4
UD
58 {
59 retval = NULL;
60 goto unlock_return;
61 }
bd355af0
UD
62 else
63 _IO_stdin->_IO_file_flags |= old_error;
96aa2d94
RM
64 }
65 buf[count] = 0;
8a4b65b4
UD
66 retval = buf;
67unlock_return:
68dbb3a6 68 _IO_cleanup_region_end (1);
8a4b65b4 69 return retval;
96aa2d94
RM
70}
71
ca34d7a7 72#ifdef weak_alias
96aa2d94 73weak_alias (_IO_gets, gets)
ca34d7a7 74#endif
d41c6f61 75
68dbb3a6 76#ifdef _LIBC
d41c6f61 77link_warning (gets, "the `gets' function is dangerous and should not be used.")
68dbb3a6 78#endif