1 /* -------------------------------------------------------------------- */
2 /* SMS Client, send messages to mobile phones and pagers		*/
3 /*									*/
4 /* ascii.h								*/
5 /*									*/
6 /*  Copyright (C) 1997,1998,1999 Angelo Masci				*/
7 /*									*/
8 /*  This library is free software; you can redistribute it and/or	*/
9 /*  modify it under the terms of the GNU Library General Public		*/
10 /*  License as published by the Free Software Foundation; either	*/
11 /*  version 2 of the License, or (at your option) any later version.	*/
12 /*									*/
13 /*  This library is distributed in the hope that it will be useful,	*/
14 /*  but WITHOUT ANY WARRANTY; without even the implied warranty of	*/
15 /*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU	*/
16 /*  Library General Public License for more details.			*/
17 /*									*/
18 /*  You should have received a copy of the GNU Library General Public	*/
19 /*  License along with this library; if not, write to the Free		*/
20 /*  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.	*/
21 /*									*/
22 /*  You can contact the author at this e-mail address:			*/
23 /*									*/
24 /*  angelo@styx.demon.co.uk						*/
25 /*									*/
26 /* -------------------------------------------------------------------- */
27 /* $Id$
28    -------------------------------------------------------------------- */
29 
30 #define S_NUL	0x00
31 #define S_SOH	0x01
32 #define S_STX	0x02
33 #define S_ETX	0x03
34 #define S_EOT	0x04
35 #define S_ENQ	0x05
36 #define S_ACK 	0x06
37 #define S_BEL 	0x07
38 #define S_BS 	0x08
39 #define S_HT 	0x09
40 #define S_LF	0x0A
41 #define S_VT	0x0B
42 #define S_NP	0x0C
43 #define S_CR	0x0D
44 #define S_SO	0x0E
45 #define S_SI	0x0F
46 #define S_DLE	0x10
47 #define S_DC1	0x11
48 #define S_DC2	0x12
49 #define S_DC3	0x13
50 #define S_DC4	0x14
51 #define S_NAK	0x15
52 #define S_SYN	0x16
53 #define S_ETB	0x17
54 #define S_CAN	0x18
55 #define S_EM	0x19
56 #define S_SUB	0x1A
57 #define S_ESC	0x1B
58 #define S_FS	0x1C
59 #define S_GS	0x1D
60 #define S_RS	0x1E
61 #define S_US	0x1F
62 
63 /* -------------------------------------------------------------------- */
64 /* -------------------------------------------------------------------- */
65 
66