#ifndef SAVE_H #define SAVE_H #include typedef struct { size_t length; char * saveFile; } gameDataSav; void processSave(); void openSave(); #endif