FlippyPass/project/backend/pass.h

24 lines
No EOL
366 B
C

// Define Once
#ifndef H_PASS
#define H_PASS
// Libraries
#include <furi.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);
password* pass_load(char* path);
// Functions
void pass_delete(password* pass);
#endif