wm: teppich

ref: 27e3ce47b705e8c01f28c38089a3e8ad9a797698
dir: /libc/strlen.c/

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