FlippyPass/project/backend/store.h
2024-08-30 09:06:47 -04:00

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