This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
FlippyPass/project/backend/pass.h

22 lines
311 B
C
Raw Permalink Normal View History

2024-08-27 03:12:39 -05:00
// Define Once
#ifndef H_PASS
#define H_PASS
// Libraries
// Structures
typedef struct {
char* name;
char* user;
char* phrase;
int folder;
2024-08-27 22:33:59 -05:00
} Password;
2024-08-27 03:12:39 -05:00
// Constructors
Password* pass_init(char* name, char* user, char* phrase, int folder);
2024-08-27 03:12:39 -05:00
// Functions
void pass_free(Password* pass);
2024-08-27 03:12:39 -05:00
#endif