xref: /csrg-svn/old/lib2648/zoomn.c (revision 18792)
1*18792Sdist /*
2*18792Sdist  * Copyright (c) 1980 Regents of the University of California.
3*18792Sdist  * All rights reserved.  The Berkeley software License Agreement
4*18792Sdist  * specifies the terms and conditions for redistribution.
5*18792Sdist  */
611500Sralph 
7*18792Sdist #ifndef lint
8*18792Sdist static char sccsid[] = "@(#)zoomn.c	5.1 (Berkeley) 04/26/85";
9*18792Sdist #endif not lint
10*18792Sdist 
1111500Sralph #include "2648.h"
1211500Sralph 
zoomn(size)1311500Sralph zoomn(size)
1411500Sralph char size;
1511500Sralph {
1611500Sralph 	sync();
1711500Sralph 	escseq(ESCD);
1811500Sralph 	outchar(size+'0');
1911500Sralph 	outchar('i');
2011500Sralph }
21