wm: teppich

ref: 1a9e9aa22d5ea5a83bcdfc43b636c43dfb0c7ee8
dir: /libc/strlen.c/

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