wm: teppich

ref: 9e35e814941b08fe29871f7cc8e925bf19ff5f7f
dir: /libc/strlen.c/

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