#ifndef DEVIL1PLD_H #define DEVIL1PLD_H #include #pragma pack(1) struct PldHeader { int32_t numOffset; // array of numOffset elements uint32_t *offsets; // }; // input: a pld header struct. void showpldh(struct PldHeader *); // input: contents of the .pld file. struct PldHeader *getpldh(const char*); #endif