avr-fw-modules/core/src/wcslen.c

15 lines
156 B
C
Executable File

#include <hwo/utils.h>
#include <stdlib.h>
#include <string.h>
int wcslen(wchar_t* str)
{
int n;
for (n=0; *(str++) != 0x0000; n++);
return n;
};