fxlibc/src/libc/string/strlen.c

13 lines
155 B
C

#include <string.h>
#ifndef __SUPPORT_ARCH_SH
size_t strlen(char const *s)
{
size_t i = 0;
while(s[i]) i++;
return i;
}
#endif /*__SUPPORT_ARCH_SH*/