home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / m2 / CycloneModules.lha / modules / txt / Ascii.def < prev    next >
Text File  |  1995-01-14  |  657b  |  21 lines

  1. (*$ Implementation- *)
  2. DEFINITION MODULE Ascii;
  3.  
  4. (* (C) Copyright 1993 Marcel Timmermans. All rights reserved. *)
  5.  
  6. CONST
  7.     (* standard ascii control character names *)
  8.     nul = 00C;  soh = 01C;  stx = 02C;  etx = 03C;
  9.     eot = 04C;  enq = 05C;  ack = 06C;  bel = 07C;
  10.     bs  = 10C;  ht  = 11C;  lf  = 12C;  vt  = 13C;
  11.     ff  = 14C;  cr  = 15C;  so  = 16C;  si  = 17C;
  12.     dle = 20C;  dc1 = 21C;  dc2 = 22C;  dc3 = 23C;
  13.     dc4 = 24C;  nak = 25C;  syn = 26C;  etb = 27C;
  14.     can = 30C;  em  = 31C;  sub = 32C;  esc = 33C;
  15.     fs  = 34C;  gs  = 35C;  rs  = 36C;  us  = 37C;
  16.     del = 177C; csi =233C;  sp  = 40C;
  17.     eof = fs;
  18.     eol = lf;
  19.  
  20. END Ascii.
  21.