blob: 6d12b21c477283f4e4f5ae0b977ceca997e76924 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) many different people.
Eric Andersencb81e642003-07-14 21:21:08 +00006 * If you wrote this, please 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>
Manuel Novoa III cad53642003-03-19 09:13:01 +000024#include <stdlib.h>
Eric Andersenaad1a882001-03-16 22:47:14 +000025#include "libbb.h"
26
Manuel Novoa III cad53642003-03-19 09:13:01 +000027/* get_line_from_file() - This function reads an entire line from a text file,
Eric Andersenaad1a882001-03-16 22:47:14 +000028 * up to a newline. It returns a malloc'ed char * which must be stored and
Manuel Novoa III cad53642003-03-19 09:13:01 +000029 * free'ed by the caller. If 'c' is nonzero, the trailing '\n' (if any)
30 * is removed. In event of a read error or EOF, NULL is returned. */
31
32static char *private_get_line_from_file(FILE *file, int c)
Eric Andersenaad1a882001-03-16 22:47:14 +000033{
Manuel Novoa III cad53642003-03-19 09:13:01 +000034#define GROWBY (80) /* how large we will grow strings by */
Eric Andersenaad1a882001-03-16 22:47:14 +000035
36 int ch;
37 int idx = 0;
38 char *linebuf = NULL;
39 int linebufsz = 0;
40
Manuel Novoa III cad53642003-03-19 09:13:01 +000041 while ((ch = getc(file)) != EOF) {
Eric Andersenaad1a882001-03-16 22:47:14 +000042 /* grow the line buffer as necessary */
Glenn L McGrath2570b432003-09-16 05:25:43 +000043 if (idx > linebufsz - 2) {
Eric Andersenaad1a882001-03-16 22:47:14 +000044 linebuf = xrealloc(linebuf, linebufsz += GROWBY);
Manuel Novoa III cad53642003-03-19 09:13:01 +000045 }
Eric Andersenaad1a882001-03-16 22:47:14 +000046 linebuf[idx++] = (char)ch;
Manuel Novoa III cad53642003-03-19 09:13:01 +000047 if (ch == '\n' || ch == '\0') {
48 if (c) {
49 --idx;
50 }
Eric Andersenaad1a882001-03-16 22:47:14 +000051 break;
Manuel Novoa III cad53642003-03-19 09:13:01 +000052 }
Eric Andersenaad1a882001-03-16 22:47:14 +000053 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000054 if (linebuf) {
55 if (ferror(file)) {
56 free(linebuf);
57 return NULL;
58 }
59 linebuf[idx] = 0;
60 }
Eric Andersenaad1a882001-03-16 22:47:14 +000061 return linebuf;
62}
63
Manuel Novoa III cad53642003-03-19 09:13:01 +000064extern char *bb_get_line_from_file(FILE *file)
65{
66 return private_get_line_from_file(file, 0);
67}
68
69extern char *bb_get_chomped_line_from_file(FILE *file)
70{
71 return private_get_line_from_file(file, 1);
72}
73
Eric Andersenaad1a882001-03-16 22:47:14 +000074
75/* END CODE */
76/*
77Local Variables:
78c-file-style: "linux"
79c-basic-offset: 4
80tab-width: 4
81End:
82*/