getline.c 452 B

12345678910111213141516171819
  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 "_stdio.h"
  8. libc_hidden_proto(getline)
  9. libc_hidden_proto(getdelim)
  10. ssize_t getline(char **__restrict lineptr, size_t *__restrict n,
  11. FILE *__restrict stream)
  12. {
  13. return getdelim(lineptr, n, '\n', stream);
  14. }
  15. libc_hidden_def(getline)