mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-07 01:15:14 +01:00
16 lines
262 B
C
16 lines
262 B
C
#ifndef FILESYSTEM_H
|
|
#define FILESYSTEM_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t number_of_stories;
|
|
uint32_t current_story;
|
|
} ost_context_t;
|
|
|
|
bool filesystem_read_index_file(ost_context_t *ctx);
|
|
void filesystem_mount();
|
|
|
|
#endif // FILESYSTEM_H
|