/* Header definition */
typedef struct {
    char sig[6];
    int  format;
    char description[81];
    unsigned scale;
    int  floodcolor;
    unsigned dl_pointer;
    } Header;

typedef struct {
    Header   hd;
    unsigned Table[MAX_SETS];
    int      File_data[MAX_FILE];
    } DFILE;
