13 lines
No EOL
188 B
C
13 lines
No EOL
188 B
C
// Define once
|
|
#ifndef H_STORE
|
|
#define H_STORE
|
|
|
|
// Libraries
|
|
#include <furi.h>
|
|
#include "app.h"
|
|
|
|
// Functions
|
|
char* store_load(char* type);
|
|
void store_save(char* type, char* data);
|
|
|
|
#endif |