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

  1.  
  2. #include "dca2troff.h"
  3.  
  4. /* structured field class e4 */
  5. do_sfe4()
  6. {
  7.     switch(sf_type)
  8.     {
  9.     case 0x02:            /* PM   - Print Medium */
  10.     case 0x03:            /* OM   - Operator Message */
  11.         flush_sf();
  12.         return;
  13.     default:
  14.         fprintf(stderr, "unknown sf e4 type (x%02x)\n", sf_type);
  15.         flush_sf();
  16.         return;
  17.     }
  18. }
  19.