omos-tcnj2024/sys/lib.c

12 lines
111 B
C

#include <types.h>
u32
strlen(const char *str)
{
size_t i;
for (i = 0; str[i] != NULL; i++);
return i;
}