xref: /onnv-gate/usr/src/cmd/tbl/t2.c (revision 0:68f95e015346)
1*0Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
2*0Sstevel@tonic-gate /*	  All Rights Reserved  	*/
3*0Sstevel@tonic-gate 
4*0Sstevel@tonic-gate 
5*0Sstevel@tonic-gate /*
6*0Sstevel@tonic-gate  * Copyright (c) 1980 Regents of the University of California.
7*0Sstevel@tonic-gate  * All rights reserved. The Berkeley software License Agreement
8*0Sstevel@tonic-gate  * specifies the terms and conditions for redistribution.
9*0Sstevel@tonic-gate  */
10*0Sstevel@tonic-gate 
11*0Sstevel@tonic-gate /*
12*0Sstevel@tonic-gate  * Copyright (c) 1983, 1984 1985, 1986, 1987, 1988, Sun Microsystems, Inc.
13*0Sstevel@tonic-gate  * All Rights Reserved.
14*0Sstevel@tonic-gate  */
15*0Sstevel@tonic-gate 
16*0Sstevel@tonic-gate #ident	"%Z%%M%	%I%	%E% SMI"	/* SVr4.0 1.1	*/
17*0Sstevel@tonic-gate 
18*0Sstevel@tonic-gate  /* t2.c:  subroutine sequencing for one table */
19*0Sstevel@tonic-gate # include "t..c"
20*0Sstevel@tonic-gate tableput()
21*0Sstevel@tonic-gate {
22*0Sstevel@tonic-gate saveline();
23*0Sstevel@tonic-gate savefill();
24*0Sstevel@tonic-gate ifdivert();
25*0Sstevel@tonic-gate cleanfc();
26*0Sstevel@tonic-gate getcomm();
27*0Sstevel@tonic-gate getspec();
28*0Sstevel@tonic-gate gettbl();
29*0Sstevel@tonic-gate getstop();
30*0Sstevel@tonic-gate checkuse();
31*0Sstevel@tonic-gate choochar();
32*0Sstevel@tonic-gate maktab();
33*0Sstevel@tonic-gate runout();
34*0Sstevel@tonic-gate release();
35*0Sstevel@tonic-gate rstofill();
36*0Sstevel@tonic-gate endoff();
37*0Sstevel@tonic-gate restline();
38*0Sstevel@tonic-gate }
39