wm: teppich

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

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