getline.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. /* getline.h --- Prototype for 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. /* Get size_t, FILE, ssize_t. And getline, if available. */
  17. # include <stddef.h>
  18. # include <stdio.h>
  19. # include <sys/types.h>
  20. #if !HAVE_DECL_GETLINE
  21. ssize_t getline (char **lineptr, size_t *n, FILE *stream);
  22. #endif /* !HAVE_GETLINE */