1BSD/ex-1.1/ex_libS.c

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

#
/*
 * Ex - a text editor
 * Bill Joy UCB September, 1977
 *
 * We use these routines here instead of libS.a because
 * we need a printf which prints through putchar().
 */

#include "ex.h"

strcpy(oto, from)
	char *oto;
	register char *from;
{
	register char *to;

	to = oto;
	while (*to++ = *from++)
		continue;
	return (oto);
}

strcat(to, from)
	char *to, *from;
{

	strcpy(strend(to), from);
	return (to);
}

strend(cp)
	register char *cp;
{

	while (*cp)
		cp++;
	return (cp);
}

strcLIN(dp)
	char *dp;
{

	return (strcpy(linebuf, dp));
}