/* * xor.h -- include file for xor.c */ /* includes */ #include #include #include /* constants */ #define TRUE (1) #define FALSE (0) /* global variables */ float FloatGlobal; /* float: a real number */ int IntGlobal; /* integer: a signed whole number */ char Filename1[255]; char Filename2[255]; /* flag-settable parameters (global variables) */ int Debug; /* Boolean: TRUE = debug writes */ int Skip; /* integer: number of bytes to skip in key */