wm: teppich

ref: 1f1261ac400fdd0e15181299ec58aa2c624a3abe
dir: /libc/strlen.c/

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