/* * EOS() finds the end of a string */ #include char * EOS(s) register char *s; { while (*s) ++s; return s; } /* EOS */