blob: 57833ee88e33c56b90251c4f5ea09658765e186a [file] [log] [blame]
#include <wchar.h>
size_t wcslen(const wchar_t* s) {
const wchar_t* a;
for (a = s; *s; s++)
;
return s - a;
}