wm: teppich

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

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