getline.c 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. /* getline.c --- Implementation of replacement getline function.
  2. Copyright (C) 2005, 2006, 2007, 2009, 2010 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. #include <config.h>
  17. #include <stdio.h>
  18. #include <sys/types.h>
  19. #include <getline.h>
  20. ssize_t
  21. getline (char **lineptr, size_t *n, FILE *stream)
  22. {
  23. return getdelim (lineptr, n, '\n', stream);
  24. }