wm: teppich

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

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