wm: teppich

ref: 8404bf30a3e77290ab24b0e1b0d928bf19d1b322
dir: /libc/strlen.c/

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