home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d197 / nro.lha / Nro / table.c < prev   
C/C++ Source or Header  |  1989-03-28  |  1KB  |  52 lines

  1. /*
  2.  *    Variable module for NRO
  3.  *
  4.  *      Originally by Stephen L. Browning, 5723 North Parker Avenue
  5.  *      Indianapolis, Indiana 46220
  6.  *
  7.  *    Transformed beyond immediate recognition, and
  8.  *    adapted for Amiga by Olaf Seibert, KosmoSoft
  9.  *
  10.  *    Vossendijk 149-1 (study)   Beek 5 (home)
  11.  *    5634 TN  Nijmegen          5815 CS  Merselo
  12.  *    The Netherlands            The Netherlands
  13.  *    Phone:
  14.  *           (...-31)80561045     (...-31)4786205
  15.  *        or 080-561045           04786-205
  16.  *
  17.  *    This program is NOT in the public domain. It may, however
  18.  *    be distributed only at no charge, and this notice must be
  19.  *    included unaltered.
  20.  */
  21.  
  22. #include <stdio.h>
  23. #include "nro.h"
  24. #define EXTERN
  25. #include "nroxtrn.h"
  26.  
  27. #define CSI        0x9B
  28.  
  29. static uchar cancel[] = { CSI, '0', 'm', 0 };
  30.  
  31. static uchar bo[] = { CSI, '1', 'm', 0 };
  32. static uchar it[] = { CSI, '3', 'm', 0 };
  33. static uchar ul[] = { CSI, '4', 'm', 0 };
  34.  
  35. static uchar boit[] = { CSI, '1', ';', '3', 'm', 0 };
  36. static uchar boul[] = { CSI, '1', ';', '4', 'm', 0 };
  37. static uchar itul[] = { CSI, '4', ';', '3', 'm', 0 };
  38.  
  39. static uchar boitul[] = { CSI, '1', ';', '4', ';', '3', 'm', 0 };
  40.  
  41.  
  42. uchar *commseq[] = {
  43.     cancel, bo, it, boit,
  44.     ul, boul, itul, boitul
  45. };
  46.  
  47. static uchar KosmoSoftID[] =
  48. "(@)# Copyright (C) 1988 by Olaf Seibert.\
  49.  May be distributed for free only.\n";
  50.  
  51.  
  52.