17efc2e3aSOliver Tappe /* 27efc2e3aSOliver Tappe ** Copyright 2011, Oliver Tappe, zooey@hirschkaefer.de. All rights reserved. 3*47a21c5cSAugustin Cavalier ** Distributed under the terms of the MIT License. 47efc2e3aSOliver Tappe */ 57efc2e3aSOliver Tappe 67efc2e3aSOliver Tappe #include <wchar_private.h> 77efc2e3aSOliver Tappe 87efc2e3aSOliver Tappe 97efc2e3aSOliver Tappe size_t __wcslen(const wchar_t * wcs)107efc2e3aSOliver Tappe__wcslen(const wchar_t* wcs) 117efc2e3aSOliver Tappe { 127efc2e3aSOliver Tappe size_t length = 0; 137efc2e3aSOliver Tappe 147efc2e3aSOliver Tappe while (*wcs++ != L'\0') 157efc2e3aSOliver Tappe length++; 167efc2e3aSOliver Tappe 177efc2e3aSOliver Tappe return length; 187efc2e3aSOliver Tappe } 197efc2e3aSOliver Tappe 207efc2e3aSOliver Tappe 217efc2e3aSOliver Tappe B_DEFINE_WEAK_ALIAS(__wcslen, wcslen); 22