f74fe1cea1eddb0f16528e291a98c1e0482c4b2c
[ctsim.git] / include / ascii.h
1 /*****************************************************************************
2 **  This is part of the CTSim program
3 **  Copyright (C) 1983-2000 Kevin Rosenberg
4 **
5 **  $Id: ascii.h,v 1.2 2000/04/28 14:14:16 kevin Exp $
6 **  $Log: ascii.h,v $
7 **  Revision 1.2  2000/04/28 14:14:16  kevin
8 **  *** empty log message ***
9 **
10 **
11 **  This program is free software; you can redistribute it and/or modify
12 **  it under the terms of the GNU General Public License (version 2) as
13 **  published by the Free Software Foundation.
14 **
15 **  This program is distributed in the hope that it will be useful,
16 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 **  GNU General Public License for more details.
19 **
20 **  You should have received a copy of the GNU General Public License
21 **  along with this program; if not, write to the Free Software
22 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23 ******************************************************************************/
24 /******************************************************************************
25  *
26  * FILE IDENTIFICATION
27  *
28  *      File Name:      ASCII.H
29  *      Author:         Kevin Rosenberg
30  *      Purpose:        Header file with definitions for ASCII characrers
31  *      Date Started:   Jan 84
32  *
33  * DESCRIPTION
34  *      Header file contains values for ASCII characters
35  *
36  * MODIFICATION LOG
37  *
38  *****************************************************************************/
39
40 #ifndef ASCII_H
41 #define ASCII_H
42
43 #define BACKSPACE  8
44 #define LF      0x0A
45 #define CR      0x0D
46 #define BELL    0x07
47
48 #define SQUOTE    '\''
49 #define DQUOTE    '\"'
50 #define BSLASH    '\\'
51 #define BACKSLASH '\\'
52 #define SHARP     '#'
53 #define SLASH     '/'
54 #define ASTERICK  '*'
55 #define COLON     ':'
56 #define LBRACE    '{'
57 #define RBRACE    '}'
58 #define LPAREN    '('
59 #define RPAREN    ')'
60 #define LBRACK    '['
61 #define RBRACK    ']'
62 #define LANBRACK  '<'
63 #define RANBRACK  '>'
64 #define SEMICOL   ';'
65 #define UNDERLIN  '_'
66 #define COMMA     ','
67 #define CARET     '^'
68 #define TILDE     '~'
69 #define ATSIGN    '@'
70 #define AMPERSAND  '&'
71 #define EXCLAM    '!'
72 #define DOLLAR    '$'
73 #define PERCENT   '%'
74 #define PLUS      '+'
75 #define HYPHEN    '-'
76 #define EQUALS    '='
77 #define QUESTION  '?'
78 #define PERIOD    '.'
79 #define VERTBAR   '|'
80
81 #endif  /* #ifndef ASCII_H */