fgets_str.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Utility routines.
  4. *
  5. * Copyright (C) many different people.
  6. * If you wrote this, please acknowledge your work.
  7. *
  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
  21. */
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include "libbb.h"
  26. /* Read up to (and including) TERMINATING_STRING from FILE and return it.
  27. * Return NULL on EOF. */
  28. char *fgets_str(FILE *file, const char *terminating_string)
  29. {
  30. char *linebuf = NULL;
  31. const int term_length = strlen(terminating_string);
  32. int end_string_offset;
  33. int linebufsz = 0;
  34. int idx = 0;
  35. int ch;
  36. while (1) {
  37. ch = fgetc(file);
  38. if (ch == EOF) {
  39. free(linebuf);
  40. return NULL;
  41. }
  42. /* grow the line buffer as necessary */
  43. while (idx > linebufsz - 2) {
  44. linebuf = xrealloc(linebuf, linebufsz += 1000);
  45. }
  46. linebuf[idx] = ch;
  47. idx++;
  48. /* Check for terminating string */
  49. end_string_offset = idx - term_length;
  50. if ((end_string_offset > 0) && (memcmp(&linebuf[end_string_offset], terminating_string, term_length) == 0)) {
  51. idx -= term_length;
  52. break;
  53. }
  54. }
  55. linebuf[idx] = '\0';
  56. return(linebuf);
  57. }