source: SH_SHM/trunk/source/ascii.h @ 374

Revision 16, 2.0 KB checked in by marcus, 15 years ago (diff)

r1 | svn | 2007-12-13 11:10:29 +0100 (Do, 13 Dez 2007) | 2 lines

Initial import

Line 
1
2/* file ASCII.H
3 *      =======
4 *
5 * version 2, 22-MAY-2006
6 *
7 * ASCII values
8 * K. Stammler, 22-MAY-91
9 */
10
11
12/*
13 *
14 *  SeismicHandler, seismic analysis software
15 *  Copyright (C) 1996,  Klaus Stammler, Federal Institute for Geosciences
16 *                                       and Natural Resources (BGR), Germany
17 *
18 *  This program is free software; you can redistribute it and/or modify
19 *  it under the terms of the GNU General Public License as published by
20 *  the Free Software Foundation; either version 2 of the License, or
21 *  (at your option) any later version.
22 *
23 *  This program is distributed in the hope that it will be useful,
24 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
25 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26 *  GNU General Public License for more details.
27 *
28 *  You should have received a copy of the GNU General Public License
29 *  along with this program; if not, write to the Free Software
30 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
31 *
32 */
33
34
35/**************************************************************************/
36/*                              ASCII Values                              */
37/**************************************************************************/
38
39#define  NUL   (char)0
40#define  SOH   (char)1
41#define  STX   (char)2
42#define  ETX   (char)3
43#define  EOT   (char)4
44#define  ENQ   (char)5
45#define  ACK   (char)6
46#define  BEL   (char)7
47#define  BS    (char)8
48#define  HT    (char)9
49#define  LF   (char)10
50#define  VT   (char)11
51#define  FF   (char)12
52#define  CR   (char)13
53#define  SO   (char)14
54#define  SI   (char)15
55#define  DLE  (char)16
56#define  DC1  (char)17
57#define  DC2  (char)18
58#define  DC3  (char)19
59#define  DC4  (char)20
60#define  NAK  (char)21
61#define  SYN  (char)22
62#define  ETB  (char)23
63#define  CAN  (char)24
64#define  EM   (char)25
65#define  SUB  (char)26
66#define  ESC  (char)27
67#define  FS   (char)28
68#define  GS   (char)29
69#define  RS   (char)30
70#define  US   (char)31
71#define  DEL (char)127
Note: See TracBrowser for help on using the repository browser.