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

  1. #include "dca2troff.h"
  2. /* structured field class e6 */
  3. do_sfe6()
  4. {
  5.     switch(sf_type)
  6.     {
  7.     case 0x01:            /* LP  - Line Parameters */
  8.     case 0x02:            /* TP  - Tab Parameters */
  9.     case 0x03:            /* LN  - Line Numbering */
  10.         flush_sf();
  11.         return;
  12.     default:
  13.         fprintf(stderr, "unknown sf e6 type (x%02x)\n", sf_type);
  14.         flush_sf();
  15.         return;
  16.     }
  17. }
  18.