home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume8 / dca2troff / do_sfe9.c < prev    next >
C/C++ Source or Header  |  1987-02-18  |  487b  |  20 lines

  1. #include "dca2troff.h"
  2. /* structured field class e9 */
  3. do_sfe9()
  4. {
  5.     switch(sf_type)
  6.     {
  7.     case 0x01:            /* PFA  - Punct. Format. Arithmetic */
  8.     case 0x02:            /* PFC  - Punct. Format. Character */
  9.     case 0x03:            /* NFP  - Note Format Paramerers */
  10.     case 0x04:            /* AOP  - Auto-Outline Parameters */
  11.     case 0x05:            /* PFP  - Page Formating Paramerers */
  12.         flush_sf();
  13.         return;
  14.     default:
  15.         fprintf(stderr, "unknown sf e9 type (x%02x)\n", sf_type);
  16.         flush_sf();
  17.         return;
  18.     }
  19. }
  20.