wm: teppich

ref: 358154f1930a7b7dfb91c8e971458a27ca3715a7
dir: /libc/strlen.c/

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