1int strlen(const char *s)
2{
3	int n = 0;
4	while (*s++)
5		n++;
6	return n;
7}
8