#include "header.h"
static char copyright[]="Larn is copyrighted 1986 by Noah Morgan.\n";

/*
 *	lprcat(string)					append a string to the output buffer
 *								    avoids calls to lprintf (time consuming)
 */
lprcat(str)
    register char *str;
    {
	register char *str2;
	if (lpnt >= lpend) lflush(); 
	str2 = lpnt;
	while (*str2++ = *str++);
	lpnt = str2 - 1;
    }

