wm: teppich

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

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