SRI-NOSC/mh/subs.dir/copyip.c

Compare this file to the similar file:
Show the results in this format:

copyip(ipfrom, ipto)
int *ipfrom, *ipto;
{
	register int *ipf, *ipt;

	ipf=ipfrom;  ipt=ipto;
	while((*ipt = *ipf)  && *ipf++ != -1)
		ipt++;
	*ipt = 0;
	return(ipt);
}