This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
FlippyPass/project/backend/store.h

19 lines
236 B
C
Raw Normal View History

2024-08-27 22:33:59 -05:00
// 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