wm: teppich

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

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