getline.c 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. /* getline.c --- Implementation of replacement getline function.
  2. Copyright (C) 2005 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. /* Written by Simon Josefsson. */
  16. #ifdef HAVE_CONFIG_H
  17. # include <config.h>
  18. #endif
  19. #include "getdelim.h"
  20. #include "getline.h"
  21. ssize_t
  22. getline (char **lineptr, size_t *n, FILE *stream)
  23. {
  24. return getdelim (lineptr, n, '\n', stream);
  25. }