wm: teppich

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

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