xref: /titanic_52/usr/src/cmd/tbl/t2.c (revision b55148877d473978f0b46d593fd6213fa526fcc5)
1*b5514887Smuffin /*
2*b5514887Smuffin  * Copyright 1990 Sun Microsystems, Inc.  All rights reserved.
3*b5514887Smuffin  * Use is subject to license terms.
4*b5514887Smuffin  */
5*b5514887Smuffin 
67c478bd9Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
77c478bd9Sstevel@tonic-gate /*	  All Rights Reserved  	*/
87c478bd9Sstevel@tonic-gate 
97c478bd9Sstevel@tonic-gate /*
107c478bd9Sstevel@tonic-gate  * Copyright (c) 1980 Regents of the University of California.
117c478bd9Sstevel@tonic-gate  * All rights reserved. The Berkeley software License Agreement
127c478bd9Sstevel@tonic-gate  * specifies the terms and conditions for redistribution.
137c478bd9Sstevel@tonic-gate  */
147c478bd9Sstevel@tonic-gate 
15*b5514887Smuffin #pragma ident	"%Z%%M%	%I%	%E% SMI"
167c478bd9Sstevel@tonic-gate 
177c478bd9Sstevel@tonic-gate  /* t2.c:  subroutine sequencing for one table */
187c478bd9Sstevel@tonic-gate # include "t..c"
19*b5514887Smuffin 
20*b5514887Smuffin void
21*b5514887Smuffin tableput(void)
227c478bd9Sstevel@tonic-gate {
237c478bd9Sstevel@tonic-gate saveline();
247c478bd9Sstevel@tonic-gate savefill();
257c478bd9Sstevel@tonic-gate ifdivert();
267c478bd9Sstevel@tonic-gate cleanfc();
277c478bd9Sstevel@tonic-gate getcomm();
287c478bd9Sstevel@tonic-gate getspec();
297c478bd9Sstevel@tonic-gate gettbl();
307c478bd9Sstevel@tonic-gate getstop();
317c478bd9Sstevel@tonic-gate checkuse();
327c478bd9Sstevel@tonic-gate choochar();
337c478bd9Sstevel@tonic-gate maktab();
347c478bd9Sstevel@tonic-gate runout();
357c478bd9Sstevel@tonic-gate release();
367c478bd9Sstevel@tonic-gate rstofill();
377c478bd9Sstevel@tonic-gate endoff();
387c478bd9Sstevel@tonic-gate restline();
397c478bd9Sstevel@tonic-gate }
40