wm: teppich

ref: cea5b851fc55e241c24792c50157adc2cb2cc240
dir: /libc/strlen.c/

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