strchr.c 578 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (C) 2002 Manuel Novoa III
  3. * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  4. *
  5. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. */
  7. #include "_string.h"
  8. #ifdef WANT_WIDE
  9. # define Wstrchr wcschr
  10. #else
  11. # define Wstrchr strchr
  12. #endif
  13. Wchar *Wstrchr(register const Wchar *s, Wint c)
  14. {
  15. do {
  16. if (*s == ((Wchar)c)) {
  17. return (Wchar *) s; /* silence the warning */
  18. }
  19. } while (*s++);
  20. return NULL;
  21. }
  22. libc_hidden_def(Wstrchr)
  23. #if !defined WANT_WIDE && defined __UCLIBC_SUSV3_LEGACY__
  24. weak_alias(strchr,index)
  25. #endif