open-story-teller/software/system/filesystem.h
2023-07-27 15:32:34 +02:00

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