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

  1. #include "dca2troff.h"
  2. /* structured field class e5 */
  3. do_sfe5()
  4. {
  5.     switch(sf_type)
  6.     {
  7.     case 0x01:            /* MPB  - Bottom Margin Text Param */
  8.     case 0x04:            /* MPT  - Top Margin Text Parameters */
  9.     case 0x07:            /* PIP  - Page Image Parametrs */
  10.     case 0x08:            /* PIN  - Page Image Numbering */
  11.         flush_sf();
  12.         return;
  13.     default:
  14.         fprintf(stderr, "unknown sf e5 type (x%02x)\n", sf_type);
  15.         flush_sf();
  16.         return;
  17.     }
  18. }
  19.