diff options
Diffstat (limited to 'src/common/file.h')
-rw-r--r-- | src/common/file.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/file.h b/src/common/file.h index e095de7..498f4f4 100644 --- a/src/common/file.h +++ b/src/common/file.h @@ -10,10 +10,11 @@ #define _FILE_H #include <stddef.h> +#include <stdbool.h> #include "error.h" #define BC_FILE_CHUNK_SIZE 1024 -char* bc_file_get_contents(const char *path, size_t *len, bc_error_t **err); +char* bc_file_get_contents(const char *path, bool utf8, size_t *len, bc_error_t **err); #endif /* _FILE_H */ |