]> wirehaze git hosting - MS-DOS.git/blob - v4.0/src/CMD/FC/FC.H

wirehaze git hosting

MZ is back!
[MS-DOS.git] / v4.0 / src / CMD / FC / FC.H
1 struct 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
12 extern unsigned char _ctype_[];
13 #define _SPACE 0x8 /* tab, carriage return, new line, */
14 #define ISSPACE(c) ( (_ctype_+1)[c] & _SPACE )