blob: a15b72bc758c61dc739f057119367b50f56f3979 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/* */
/****************************************************************************/
/* Define statements */
/****************************************************************************/
/* */
#define BEGIN {
#define END }
#define ESC 0x1B
#define NUL 0x00
#define NOT_FOUND 0xFF
#define DELETED 0xFF
#define INVALID 0xFF
#define FALSE (1==0)
#define TRUE !FALSE
#define CR 0x0D
/* */
/****************************************************************************/
/* Declare Global variables */
/****************************************************************************/
/* */
unsigned input_row;
unsigned input_col;
char insert[200];
char *pinsert = insert;
/* */
/****************************************************************************/
/* Subroutine Definitions */
/****************************************************************************/
/* */
void clear_screen(unsigned,unsigned,unsigned,unsigned);
void display(char far *);
char wait_for_ESC(void);
|