diff options
Diffstat (limited to 'src/world.h')
-rw-r--r-- | src/world.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/world.h b/src/world.h index 8281bb5e..dd3d4043 100644 --- a/src/world.h +++ b/src/world.h @@ -8,13 +8,17 @@ #include "serd/status.h" #include "serd/world.h" -#include <stdarg.h> +#include <stdio.h> struct SerdWorldImpl { SerdErrorFunc error_func; void* error_handle; }; +/// Open a file configured for fast sequential reading +FILE* +serd_world_fopen(SerdWorld* world, const char* path, const char* mode); + SerdStatus serd_world_error(const SerdWorld* world, const SerdError* e); |