Skip to content
Snippets Groups Projects
Commit 7053dd20 authored by rswindell's avatar rswindell
Browse files

Define control character constants (if not already defined).

parent dc20b2e9
No related branches found
No related tags found
No related merge requests found
......@@ -225,6 +225,37 @@
#define DEL 0x7f /* Delete ^BS */
#endif
#if !CTRL_A
enum {
CTRL_A=1
,CTRL_B
,CTRL_C
,CTRL_D
,CTRL_E
,CTRL_F
,CTRL_G
,CTRL_H
,CTRL_I
,CTRL_J
,CTRL_K
,CTRL_L
,CTRL_M
,CTRL_N
,CTRL_O
,CTRL_P
,CTRL_Q
,CTRL_R
,CTRL_S
,CTRL_T
,CTRL_U
,CTRL_V
,CTRL_W
,CTRL_X
,CTRL_Y
,CTRL_Z
};
#endif
#define CLREOL 256
#ifndef uchar /* Short-hand for unsigned data types */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment