wm: teppich

ref: 83b2bd4a1c90233331fe35203e555f738b192704
dir: /libc/strlen.c/

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