// Define once #ifndef H_STORE #define H_STORE // Libraries #include #include "base.h" // Enums typedef enum { Store_File_Path_Data, Store_File_Path_Archive } Store_File_Path; // Functions char* store_load(Store_File_Path path, char* type); void store_save(Store_File_Path path, char* type, char* data); #endif