wm: teppich

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

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