wm: teppich

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

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