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/store.h

18 lines
302 B
C
Raw Permalink Normal View History

2024-08-27 22:33:59 -05:00
// Define once
#ifndef H_STORE
#define H_STORE
// Libraries
2024-08-27 23:43:31 -05:00
#include <furi.h>
2024-09-08 20:12:29 -05:00
#include "base.h"
2024-08-27 22:33:59 -05:00
// Enums
typedef enum {
2024-09-16 00:20:43 -05:00
Store_File_Path_Data
} Store_File_Path;
2024-08-27 22:33:59 -05:00
// Functions
char* store_load(Store_File_Path path, char* type);
void store_save(Store_File_Path path, char* type, char* data);
2024-08-27 22:33:59 -05:00
#endif