wm: teppich

ref: 87aea719c1983d7a9c5297d4a52630d8b8dbe5ea
dir: /libc/strlen.c/

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