home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume8
/
dca2troff
/
do_sfe6.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-02-18
|
352b
|
18 lines
#include "dca2troff.h"
/* structured field class e6 */
do_sfe6()
{
switch(sf_type)
{
case 0x01: /* LP - Line Parameters */
case 0x02: /* TP - Tab Parameters */
case 0x03: /* LN - Line Numbering */
flush_sf();
return;
default:
fprintf(stderr, "unknown sf e6 type (x%02x)\n", sf_type);
flush_sf();
return;
}
}