wm: teppich

ref: 05915e0626ff874f3c7786a46fc8d3e025ae1788
dir: /libc/strlen.c/

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