wm: teppich

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

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