summaryrefslogtreecommitdiff
path: root/v4.0/src/CMD/FC/FC.H
diff options
context:
space:
mode:
Diffstat (limited to 'v4.0/src/CMD/FC/FC.H')
-rw-r--r--v4.0/src/CMD/FC/FC.H14
1 files changed, 14 insertions, 0 deletions
diff --git a/v4.0/src/CMD/FC/FC.H b/v4.0/src/CMD/FC/FC.H
new file mode 100644
index 0000000..aa826c3
--- /dev/null
+++ b/v4.0/src/CMD/FC/FC.H
@@ -0,0 +1,14 @@
1struct lineType {
2 int line; /* line number */
3 unsigned char text[MAXARG]; /* body of line */
4};
5
6#define byte unsigned char
7#define word unsigned short
8
9#define LOWVERSION 0x0300 + 10
10#define HIGHVERSION 0x0400 + 00
11
12extern unsigned char _ctype_[];
13#define _SPACE 0x8 /* tab, carriage return, new line, */
14#define ISSPACE(c) ( (_ctype_+1)[c] & _SPACE )