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

  1.  
  2. #include "dca2troff.h"
  3.  
  4. /* multi byte class d2 */
  5. do_mbd2()
  6. {
  7.     switch (mb_type)
  8.     {
  9.     case 0x01:            /* STAB  - Set Tabs */
  10.     case 0x0b:            /* RLM   - Release Left Margin */
  11.     case 0x35:            /* SVA   - Set Visual Attributes */
  12.         do_flush(mb_count);
  13.         return;
  14.     default:
  15.         fprintf(stderr, "unknown mb d2 type (%02x)\n", mb_type);
  16.         do_flush(mb_count);
  17.         return;
  18.     }
  19. }
  20.