mirror of
https://github.com/status-im/status-go.git
synced 2025-02-06 03:44:38 +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;
|
|
}
|