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