wm: teppich

ref: 56a22259605107b053e6b22b125fb93afd725641
dir: /libc/strlen.c/

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