get_line_from_file.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 "libbb.h"
  25. /* get_line_from_file() - This function reads an entire line from a text file,
  26. * up to a newline. It returns a malloc'ed char * which must be stored and
  27. * free'ed by the caller. If 'c' is nonzero, the trailing '\n' (if any)
  28. * is removed. In event of a read error or EOF, NULL is returned. */
  29. static char *private_get_line_from_file(FILE *file, int c)
  30. {
  31. #define GROWBY (80) /* how large we will grow strings by */
  32. int ch;
  33. int idx = 0;
  34. char *linebuf = NULL;
  35. int linebufsz = 0;
  36. while ((ch = getc(file)) != EOF) {
  37. /* grow the line buffer as necessary */
  38. if (idx > linebufsz - 2) {
  39. linebuf = xrealloc(linebuf, linebufsz += GROWBY);
  40. }
  41. linebuf[idx++] = (char)ch;
  42. if (ch == '\n' || ch == '\0') {
  43. if (c) {
  44. --idx;
  45. }
  46. break;
  47. }
  48. }
  49. if (linebuf) {
  50. if (ferror(file)) {
  51. free(linebuf);
  52. return NULL;
  53. }
  54. linebuf[idx] = 0;
  55. }
  56. return linebuf;
  57. }
  58. extern char *bb_get_line_from_file(FILE *file)
  59. {
  60. return private_get_line_from_file(file, 0);
  61. }
  62. extern char *bb_get_chomped_line_from_file(FILE *file)
  63. {
  64. return private_get_line_from_file(file, 1);
  65. }
  66. /* END CODE */
  67. /*
  68. Local Variables:
  69. c-file-style: "linux"
  70. c-basic-offset: 4
  71. tab-width: 4
  72. End:
  73. */