blob: 5e7062127d4c26cb9568019828f7fe64c2ea7e9c [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) many different people. If you wrote this, please
6 * acknowledge your work.
Eric Andersenaad1a882001-03-16 22:47:14 +00007 *
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 2 of the License, or
11 * (at your option) any later version.
12 *
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 GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Eric Andersenaad1a882001-03-16 22:47:14 +000021 */
22
23#include <stdio.h>
24#include "libbb.h"
25
26
27
28/* get_line_from_file() - This function reads an entire line from a text file
29 * up to a newline. It returns a malloc'ed char * which must be stored and
30 * free'ed by the caller. */
31extern char *get_line_from_file(FILE *file)
32{
33 static const int GROWBY = 80; /* how large we will grow strings by */
34
35 int ch;
36 int idx = 0;
37 char *linebuf = NULL;
38 int linebufsz = 0;
39
40 while (1) {
41 ch = fgetc(file);
42 if (ch == EOF)
43 break;
44 /* grow the line buffer as necessary */
45 while (idx > linebufsz-2)
46 linebuf = xrealloc(linebuf, linebufsz += GROWBY);
47 linebuf[idx++] = (char)ch;
Matt Kraai355a61b2001-11-20 15:49:50 +000048 if (ch == '\n' || ch == '\0')
Eric Andersenaad1a882001-03-16 22:47:14 +000049 break;
50 }
51
52 if (idx == 0)
53 return NULL;
54
55 linebuf[idx] = 0;
56 return linebuf;
57}
58
59
60/* END CODE */
61/*
62Local Variables:
63c-file-style: "linux"
64c-basic-offset: 4
65tab-width: 4
66End:
67*/