wm: teppich

ref: 0964650171a5444e6dd63752e8986725fd68a5ab
dir: /libc/strlen.c/

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