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 | * |
"Robert P. J. Day" | 5d8843e | 2006-07-10 11:41:19 +0000 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | |
| 12 | #include <stdio.h> |
| 13 | #include <stdlib.h> |
| 14 | #include <string.h> |
| 15 | |
Matt Kraai | bcca331 | 2001-10-18 17:04:22 +0000 | [diff] [blame] | 16 | #include "libbb.h" |
| 17 | |
| 18 | /* Read up to (and including) TERMINATING_STRING from FILE and return it. |
| 19 | * Return NULL on EOF. */ |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 20 | |
| 21 | char *fgets_str(FILE *file, const char *terminating_string) |
| 22 | { |
| 23 | char *linebuf = NULL; |
| 24 | const int term_length = strlen(terminating_string); |
| 25 | int end_string_offset; |
| 26 | int linebufsz = 0; |
| 27 | int idx = 0; |
| 28 | int ch; |
| 29 | |
| 30 | while (1) { |
| 31 | ch = fgetc(file); |
| 32 | if (ch == EOF) { |
Matt Kraai | bcca331 | 2001-10-18 17:04:22 +0000 | [diff] [blame] | 33 | free(linebuf); |
| 34 | return NULL; |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | /* grow the line buffer as necessary */ |
| 38 | while (idx > linebufsz - 2) { |
Matt Kraai | bcca331 | 2001-10-18 17:04:22 +0000 | [diff] [blame] | 39 | linebuf = xrealloc(linebuf, linebufsz += 1000); |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | linebuf[idx] = ch; |
| 43 | idx++; |
| 44 | |
| 45 | /* Check for terminating string */ |
| 46 | end_string_offset = idx - term_length; |
| 47 | if ((end_string_offset > 0) && (memcmp(&linebuf[end_string_offset], terminating_string, term_length) == 0)) { |
| 48 | idx -= term_length; |
| 49 | break; |
| 50 | } |
| 51 | } |
Glenn L McGrath | 17822cd | 2001-06-13 07:34:03 +0000 | [diff] [blame] | 52 | linebuf[idx] = '\0'; |
| 53 | return(linebuf); |
| 54 | } |
| 55 | |