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

  1. #include "dca2troff.h"
  2.  
  3. /* structured field class e1 */
  4. do_sfe1()
  5. {
  6.     switch(sf_type)
  7.     {
  8.     case 0x03:            /* FUP  - Format Unit Prefix */
  9.     case 0x04:            /* TUP  - Text Unit Prefix */
  10.     case 0x06:            /* EUP  - End Unit Prefix */
  11.         flush_sf();
  12.         return;
  13.     default:
  14.         fprintf(stderr, "unknown sf e1 type (x%02x)\n", sf_type);
  15.         flush_sf();
  16.         return;
  17.     }
  18. }
  19.