wm: teppich

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

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