blob: bf828be95e4a4019b4bf94cda0488c9f622214e2 [file] [log] [blame]
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath17822cd2001-06-13 07:34:03 +00002/*
Eric Andersenbdfd0d72001-10-24 05:00:29 +00003 * Utility routines.
Glenn L McGrath17822cd2001-06-13 07:34:03 +00004 *
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.
Glenn L McGrath17822cd2001-06-13 07:34:03 +00007 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00008 * 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
Glenn L McGrath17822cd2001-06-13 07:34:03 +000021 */
22
23
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27
Matt Kraaibcca3312001-10-18 17:04:22 +000028#include "libbb.h"
29
30/* Read up to (and including) TERMINATING_STRING from FILE and return it.
31 * Return NULL on EOF. */
Glenn L McGrath17822cd2001-06-13 07:34:03 +000032
33char *fgets_str(FILE *file, const char *terminating_string)
34{
35 char *linebuf = NULL;
36 const int term_length = strlen(terminating_string);
37 int end_string_offset;
38 int linebufsz = 0;
39 int idx = 0;
40 int ch;
41
42 while (1) {
43 ch = fgetc(file);
44 if (ch == EOF) {
Matt Kraaibcca3312001-10-18 17:04:22 +000045 free(linebuf);
46 return NULL;
Glenn L McGrath17822cd2001-06-13 07:34:03 +000047 }
48
49 /* grow the line buffer as necessary */
50 while (idx > linebufsz - 2) {
Matt Kraaibcca3312001-10-18 17:04:22 +000051 linebuf = xrealloc(linebuf, linebufsz += 1000);
Glenn L McGrath17822cd2001-06-13 07:34:03 +000052 }
53
54 linebuf[idx] = ch;
55 idx++;
56
57 /* Check for terminating string */
58 end_string_offset = idx - term_length;
59 if ((end_string_offset > 0) && (memcmp(&linebuf[end_string_offset], terminating_string, term_length) == 0)) {
60 idx -= term_length;
61 break;
62 }
63 }
Glenn L McGrath17822cd2001-06-13 07:34:03 +000064 linebuf[idx] = '\0';
65 return(linebuf);
66}
67