home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume8
/
dca2troff
/
do_sfe9.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-02-18
|
487b
|
20 lines
#include "dca2troff.h"
/* structured field class e9 */
do_sfe9()
{
switch(sf_type)
{
case 0x01: /* PFA - Punct. Format. Arithmetic */
case 0x02: /* PFC - Punct. Format. Character */
case 0x03: /* NFP - Note Format Paramerers */
case 0x04: /* AOP - Auto-Outline Parameters */
case 0x05: /* PFP - Page Formating Paramerers */
flush_sf();
return;
default:
fprintf(stderr, "unknown sf e9 type (x%02x)\n", sf_type);
flush_sf();
return;
}
}