getline.c 950 B

12345678910111213141516171819202122232425262728
  1. /* getline.c --- Implementation of replacement getline function.
  2. Copyright (C) 2005-2007, 2009-2013 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 3, 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, see <http://www.gnu.org/licenses/>. */
  13. /* Written by Simon Josefsson. */
  14. #include <config.h>
  15. #include <stdio.h>
  16. ssize_t
  17. getline (char **lineptr, size_t *n, FILE *stream)
  18. {
  19. return getdelim (lineptr, n, '\n', stream);
  20. }