wm: teppich

ref: 314e6ae39dad35e4d77c9fa6eb99ee2f43a5bf4c
dir: /libc/strlen.c/

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