22 lines
No EOL
299 B
C
22 lines
No EOL
299 B
C
// Define once
|
|
#ifndef H_STORE
|
|
#define H_STORE
|
|
|
|
// Libraries
|
|
#include <furi.h>
|
|
#include "app.h"
|
|
|
|
// Structures
|
|
typedef struct {
|
|
char* data;
|
|
bool valid;
|
|
} FStorage;
|
|
|
|
// Constructors
|
|
FStorage* store_load();
|
|
void store_save(char* data);
|
|
|
|
// Functions
|
|
void store_unload(FStorage* store);
|
|
|
|
#endif |