wm: teppich

ref: eb0e2965408bc21ef6f53a495f9d6469659c65ec
dir: /libc/strlen.c/

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