FlippyPass/project/backend/pass.h

23 lines
No EOL
330 B
C

// 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_init(char* name, char* user, char* phrase, int folder);
// Functions
void pass_free(Password* pass);
#endif