22 lines
No EOL
311 B
C
22 lines
No EOL
311 B
C
// Define Once
|
|
#ifndef H_PASS
|
|
#define H_PASS
|
|
|
|
// Libraries
|
|
|
|
// Structures
|
|
typedef struct {
|
|
char* name;
|
|
char* user;
|
|
char* phrase;
|
|
|
|
int folder;
|
|
} Password;
|
|
|
|
// Constructors
|
|
Password* pass_init(char* name, char* user, char* phrase, int folder);
|
|
|
|
// Functions
|
|
void pass_free(Password* pass);
|
|
|
|
#endif |