strnlen.c 661 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 __USE_GNU
  9. #ifdef WANT_WIDE
  10. # define Wstrnlen wcsnlen
  11. #else
  12. # define Wstrnlen strnlen
  13. #endif
  14. size_t Wstrnlen(const Wchar *s, size_t max)
  15. {
  16. register const Wchar *p = s;
  17. #ifdef __BCC__
  18. /* bcc can optimize the counter if it thinks it is a pointer... */
  19. register const char *maxp = (const char *) max;
  20. #else
  21. # define maxp max
  22. #endif
  23. while (maxp && *p) {
  24. ++p;
  25. --maxp;
  26. }
  27. return p - s;
  28. }
  29. #undef maxp
  30. libc_hidden_def(Wstrnlen)
  31. #endif