19 lines
236 B
C
19 lines
236 B
C
|
|
// Define once
|
||
|
|
#ifndef H_STORE
|
||
|
|
#define H_STORE
|
||
|
|
|
||
|
|
// Libraries
|
||
|
|
#include "app.h"
|
||
|
|
|
||
|
|
// Structures
|
||
|
|
typedef struct {
|
||
|
|
char* data;
|
||
|
|
} FStorage;
|
||
|
|
|
||
|
|
// Constructors
|
||
|
|
FStorage* store_load();
|
||
|
|
|
||
|
|
// Functions
|
||
|
|
void store_unload(FStorage* store);
|
||
|
|
|
||
|
|
#endif
|