fgets.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. #ifdef __DO_UNLOCKED
  9. char *__fgets_unlocked(char *__restrict s, int n,
  10. register FILE * __restrict stream)
  11. {
  12. register char *p;
  13. int c;
  14. __STDIO_STREAM_VALIDATE(stream);
  15. #ifdef __UCLIBC_MJN3_ONLY__
  16. #warning CONSIDER: What should fgets do if n <= 0?
  17. #endif /* __UCLIBC_MJN3_ONLY__ */
  18. /* Should we assert here? Or set errno? Or just fail... */
  19. if (n <= 0) {
  20. /* __set_errno(EINVAL); */
  21. goto ERROR;
  22. }
  23. p = s;
  24. while (--n) {
  25. if (__STDIO_STREAM_CAN_USE_BUFFER_GET(stream)) {
  26. if ((*p++ = __STDIO_STREAM_BUFFER_GET(stream)) == '\n') {
  27. break;
  28. }
  29. } else {
  30. if ((c = __fgetc_unlocked(stream)) == EOF) {
  31. if (__FERROR_UNLOCKED(stream)) {
  32. goto ERROR;
  33. }
  34. break;
  35. }
  36. if ((*p++ = c) == '\n') {
  37. break;
  38. }
  39. }
  40. }
  41. #ifdef __UCLIBC_MJN3_ONLY__
  42. #warning CONSIDER: If n==1 and not at EOF, should fgets return an empty string?
  43. #endif /* __UCLIBC_MJN3_ONLY__ */
  44. if (p > s) {
  45. *p = 0;
  46. return s;
  47. }
  48. ERROR:
  49. return NULL;
  50. }
  51. weak_alias(__fgets_unlocked,fgets_unlocked);
  52. #ifndef __UCLIBC_HAS_THREADS__
  53. weak_alias(__fgets_unlocked,fgets);
  54. #endif
  55. #elif defined __UCLIBC_HAS_THREADS__
  56. char *fgets(char *__restrict s, int n,
  57. register FILE * __restrict stream)
  58. {
  59. char *retval;
  60. __STDIO_AUTO_THREADLOCK_VAR;
  61. __STDIO_AUTO_THREADLOCK(stream);
  62. retval = __fgets_unlocked(s, n, stream);
  63. __STDIO_AUTO_THREADUNLOCK(stream);
  64. return retval;
  65. }
  66. #endif