Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 2 | /* |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 3 | * Utility routines. |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) many different people. |
Eric Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 6 | * If you wrote this, please acknowledge your work. |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 7 | * |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 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 |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | |
| 24 | #include <stdio.h> |
| 25 | #include <stdlib.h> |
| 26 | #include <string.h> |
| 27 | |
Matt Kraai | bcca331 | 2001-10-18 17:04:22 +0000 | [diff] [blame] | 28 | #include "libbb.h" |
| 29 | |
| 30 | /* Read up to (and including) TERMINATING_STRING from FILE and return it. |
| 31 | * Return NULL on EOF. */ |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 32 | |
| 33 | char *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 Kraai | bcca331 | 2001-10-18 17:04:22 +0000 | [diff] [blame] | 45 | free(linebuf); |
| 46 | return NULL; |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | /* grow the line buffer as necessary */ |
| 50 | while (idx > linebufsz - 2) { |
Matt Kraai | bcca331 | 2001-10-18 17:04:22 +0000 | [diff] [blame] | 51 | linebuf = xrealloc(linebuf, linebufsz += 1000); |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 52 | } |
| 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 McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 64 | linebuf[idx] = '\0'; |
| 65 | return(linebuf); |
| 66 | } |
| 67 | |