wm: teppich

ref: 955c19f31b529241b31b780d4c65fa7e5bef4de3
dir: /libc/strlen.c/

View raw version
unsigned int
strlen(char *s)
{
	int i = 0;
	while(s[i] != '\0')
		i++;
	return i;
}