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

  1.  
  2. #include "dca2troff.h"
  3.  
  4. /* multi byte class d9 */
  5. do_mbd9()
  6. {
  7.     switch (mb_type)
  8.     {
  9.     case 0x6a:            /* AO   - Auto-Outline */
  10.     case 0x82:            /* INS  - Insert */
  11.     case 0x85:            /* NR   - Note Reference */
  12.     case 0x86:            /* NTR  - Note Text Reference */
  13.         do_flush(mb_count);
  14.         return;
  15.     case 0x81:            /* IU   - Include Unit */
  16.         fprintf(stderr, " This document has a request to include another document\n");
  17.         outstr("\\\" Include request");
  18.         do_flush(mb_count);
  19.         return;
  20.     default:
  21.         fprintf(stderr, "unknown mb d9 type (%02x)\n", mb_type);
  22.         do_flush(mb_count);
  23.         return;
  24.     }
  25. }
  26.  
  27.