Pristine Ack-5.5
[Ack-5.5.git] / lang / m2 / libm2 / ASCII.def
1 (*$Foreign*)
2 DEFINITION MODULE ASCII;
3 (*
4   Module:       Mnemonics for ASCII control characters
5   From:         ???
6   Version:      $Id: ASCII.def,v 1.3 1994/06/24 12:48:07 ceriel Exp $
7 *)
8
9 CONST
10         nul = 00C;      soh = 01C;      stx = 02C;      etx = 03C;
11         eot = 04C;      enq = 05C;      ack = 06C;      bel = 07C;
12         bs  = 10C;      ht  = 11C;      lf  = 12C;      vt  = 13C;
13         ff  = 14C;      cr  = 15C;      so  = 16C;      si  = 17C;
14         dle = 20C;      dc1 = 21C;      dc2 = 22C;      dc3 = 23C;
15         dc4 = 24C;      nak = 25C;      syn = 26C;      etb = 27C;
16         can = 30C;      em =  31C;      sub = 32C;      esc = 33C;
17         fs  = 34C;      gs  = 35C;      rs  = 36C;      us  = 37C;
18         del = 177C;
19
20 END ASCII.