// Define Once #ifndef H_PASS #define H_PASS // Libraries #include "store.h" // Structures typedef struct { char* name; char* user; char* phrase; int folder; } Password; // Constructors Password* pass_create(char* name, char* user, char* phrase, int folder); // Functions void pass_delete(Password* pass); #endif