wm: teppich

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

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