wm: teppich

ref: 490b46519ceb45220574a4ade95c25eb7d2bb2b4
dir: /libc/strlen.c/

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