getline.h 1.0 KB

12345678910111213141516171819202122232425262728
  1. /* getline.c --- Implementation of replacement getline function.
  2. Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU General Public License as
  5. published by the Free Software Foundation; either version 2, or (at
  6. your option) any later version.
  7. This program is distributed in the hope that it will be useful, but
  8. WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  14. 02110-1301, USA. */
  15. #ifndef _GETLINE_H
  16. #define _GETLINE_H 1
  17. #include <string.h>
  18. ssize_t getline (char **lineptr, size_t *n, FILE *stream);
  19. ssize_t getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp);
  20. #endif