xref: /csrg-svn/lib/libplot/hp2648/cont.c (revision 61393)
148517Sbostic /*-
2*61393Sbostic  * Copyright (c) 1980, 1993
3*61393Sbostic  *	The Regents of the University of California.  All rights reserved.
448517Sbostic  *
548517Sbostic  * %sccs.include.proprietary.c%
619975Sdist  */
719975Sdist 
815448Sralph #ifndef lint
9*61393Sbostic static char sccsid[] = "@(#)cont.c	8.1 (Berkeley) 06/04/93";
1048517Sbostic #endif /* not lint */
1115448Sralph 
1215448Sralph #include "hp2648.h"
1315448Sralph 
cont(xi,yi)1415448Sralph cont(xi,yi)
1515448Sralph int xi,yi;
1615448Sralph {
1715448Sralph 	char xb1,xb2,yb1,yb2;
1815448Sralph 	itoa(xsc(xi),&xb1,&xb2);
1915448Sralph 	itoa(ysc(yi),&yb1,&yb2);
2015448Sralph 	buffready(4);
2115448Sralph 	putchar(xb2);
2215448Sralph 	putchar(xb1);
2315448Sralph 	putchar(yb2);
2415448Sralph 	putchar(yb1);
2515448Sralph 	currentx = xsc(xi);
2615448Sralph 	currenty = ysc(yi);
2715448Sralph }
28