blob: a59c8f179ea63c159ca7c27fd2f3928e0e342bf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <wchar.h>
#include "_safety.h"
size_t wcslen(const wchar_t * s)
{
SIGNAL_SAFE(0);
size_t l = 0;
while (s[l] != L'\0') {
l++;
}
return l;
}
/*
STDC(199409)
*/
|