FlippyPass/project/backend/store.h

13 lines
No EOL
189 B
C

// Define once
#ifndef H_STORE
#define H_STORE
// Libraries
#include <furi.h>
#include "base.h"
// Functions
char* store_load(char* type);
void store_save(char* type, char* data);
#endif