wm: teppich

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

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