diff options
Diffstat (limited to 'filesystem/include/filesystem.h')
-rw-r--r-- | filesystem/include/filesystem.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/filesystem/include/filesystem.h b/filesystem/include/filesystem.h index 3dce87f..1c354b7 100644 --- a/filesystem/include/filesystem.h +++ b/filesystem/include/filesystem.h | |||
@@ -3,7 +3,6 @@ | |||
3 | */ | 3 | */ |
4 | #pragma once | 4 | #pragma once |
5 | 5 | ||
6 | #include <stdbool.h> | ||
7 | #include <stddef.h> | 6 | #include <stddef.h> |
8 | #include <stdio.h> | 7 | #include <stdio.h> |
9 | 8 | ||
@@ -12,8 +11,3 @@ size_t get_file_size(FILE* file); | |||
12 | 11 | ||
13 | /// Read the entire contents of the file into memory. | 12 | /// Read the entire contents of the file into memory. |
14 | void* read_file(const char* filepath); | 13 | void* read_file(const char* filepath); |
15 | |||
16 | /// Make a path relative to the parent directory of a file. | ||
17 | bool make_relative_path( | ||
18 | const char* filepath, const char* path, char* relative, | ||
19 | size_t relative_length); | ||