wm: teppich

ref: 0406ab471ab3c21903bd6c331cb75426b9e7fb1c
dir: /libc/strlen.c/

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