wm: teppich

ref: 1596ae1c7437f8929243999919c8cc649359236d
dir: /libc/strlen.c/

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