wm: teppich

ref: 5f9fe862f420ec042875620a7f2d4e06e34d03a1
dir: /libc/strlen.c/

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