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