/********************************** * std.h THE STANDARD HEADER * * * * Copuright (c) 1978,1985 * * by Whitesmoths, Ltd * * * * ( from TECNINT manual ) * **********************************/ /* the pseudo storage classes */ #define FAST register #define GLOBAL extern #define IMPORT extern #define INTERN static #define LOCAL static #define REG register #define MLOCAL static /* the pseudo types */ #ifdef UTEXT typedef unsigned char TEXT; #else typedef char TEXT; #endif typedef TEXT TBOOL; typedef char TINY; typedef double DOUBLE; typedef int ARGINT, BOOL, VOID; typedef long LONG; typedef short COUNT, FILE, METACH; typedef unsigned BYTES; typedef unsigned char UTINY; typedef unsigned long ULONG; typedef unsigned short BITS, UCOUNT; typedef char BYTE; typedef unsigned char UBYTE; typedef short WORD; typedef unsigned short UWORD;