// Define once #ifndef H_STORE #define H_STORE // Libraries #include "app.h" // Structures typedef struct { char* data; } FStorage; // Constructors FStorage* store_load(); // Functions void store_unload(FStorage* store); #endif