/* Compute length of string. */ strlen(as) char *as; { register char *s; register i; s = as; i = 0; while (*s++) i++; return(i); }