home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume8 / dca2troff / do_sfe3.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-02-18  |  385 b   |  18 lines

  1. #include "dca2troff.h"
  2. /* structured field class e3 */
  3. do_sfe3()
  4. {
  5.     switch(sf_type)
  6.     {
  7.     case 0x01:            /* EPM  - Estab Primary Master Fmt */
  8.     case 0x02:            /* EAM  - Estab Alternate Master Fmt */
  9.     case 0x03:            /* RTMF - Return to Master Format */
  10.         flush_sf();
  11.         return;
  12.     default:
  13.         fprintf(stderr, "unknown sf e3 type (x%02x)\n", sf_type);
  14.         flush_sf();
  15.         return;
  16.     }
  17. }
  18.