18 lines
No EOL
302 B
C
18 lines
No EOL
302 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;
|
|
|
|
// Functions
|
|
char* store_load(Store_File_Path path, char* type);
|
|
void store_save(Store_File_Path path, char* type, char* data);
|
|
|
|
#endif |