getline.c 511 B

1234567891011121314151617181920212223
  1. /* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org>
  2. *
  3. * GNU Library General Public License (LGPL) version 2 or later.
  4. *
  5. * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details.
  6. */
  7. #include <features.h>
  8. #ifdef __USE_GNU
  9. #include "_stdio.h"
  10. /* libc_hidden_proto(getline) */
  11. /* libc_hidden_proto(getdelim) */
  12. ssize_t getline(char **__restrict lineptr, size_t *__restrict n,
  13. FILE *__restrict stream)
  14. {
  15. return getdelim(lineptr, n, '\n', stream);
  16. }
  17. libc_hidden_def(getline)
  18. #endif