FlippyPass/project/backend/store.h

19 lines
No EOL
331 B
C

// Define once
#ifndef H_STORE
#define H_STORE
// Libraries
#include <furi.h>
#include "base.h"
// Enums
typedef enum {
Store_File_Path_Data,
Store_File_Path_Archive
} Store_File_Path;
// Functions
char* store_load(Store_File_Path path, char* type);
void store_save(Store_File_Path path, char* type, char* data);
#endif