1 /* safe-fgets.c --- like fgets, but allocates its own static buffer.
3 Copyright (C) 2005-2018 Free Software Foundation, Inc.
4 Contributed by Red Hat, Inc.
6 This file is part of the GNU simulators.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 #include "safe-fgets.h"
27 static char *line_buf
= 0;
28 static int line_buf_size
= 0;
39 line_buf
= (char *) malloc (LBUFINCR
);
40 line_buf_size
= LBUFINCR
;
43 /* points to last byte */
44 line_ptr
= line_buf
+ line_buf_size
- 1;
46 /* so we can see if fgets put a 0 there */
48 if (fgets (line_buf
, line_buf_size
, f
) == 0)
51 /* we filled the buffer? */
52 while (line_ptr
[0] == 0 && line_ptr
[-1] != '\n')
54 /* Make the buffer bigger and read more of the line */
55 line_buf_size
+= LBUFINCR
;
56 line_buf
= (char *) realloc (line_buf
, line_buf_size
);
58 /* points to last byte again */
59 line_ptr
= line_buf
+ line_buf_size
- 1;
60 /* so we can see if fgets put a 0 there */
63 if (fgets (line_buf
+ line_buf_size
- LBUFINCR
- 1, LBUFINCR
+ 1, f
) ==