// Define once #ifndef H_MANAGER #define H_MANAGER // Libraries #include #include "base.h" #include "pass.h" #include "store.h" // Structures typedef struct { Password* current; Password* new; char** names; int count; } Manager; // Constructors Manager* manager_init(); // Functions void manager_savepass(Password* pass); void manager_loadpass(Manager* manager, char* name); void manager_free(Manager* manager); #endif