mirror of
https://github.com/status-im/status-go.git
synced 2025-02-11 06:16:43 +00:00
9 lines
109 B
C
9 lines
109 B
C
|
#include <wchar.h>
|
||
|
|
||
|
size_t wcslen(const wchar_t *s)
|
||
|
{
|
||
|
const wchar_t *a;
|
||
|
for (a=s; *s; s++);
|
||
|
return s-a;
|
||
|
}
|