libdl: first execute all destructors, then munmap library
[uclibc-ng.git] / libc / string / strlen.c
blob021a8cabc340e1275837ce13bf0ce9587564fd15
1 /*
2 * Copyright (C) 2002 Manuel Novoa III
3 * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
5 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
6 */
8 #include "_string.h"
10 #ifdef WANT_WIDE
11 # define Wstrlen wcslen
12 #else
13 # define Wstrlen strlen
14 #endif
16 size_t Wstrlen(const Wchar *s)
18 register const Wchar *p;
20 for (p=s ; *p ; p++);
22 return p - s;
24 libc_hidden_weak(Wstrlen)