diff options
Diffstat (limited to 'src/Path/Path.h')
| -rw-r--r-- | src/Path/Path.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Path/Path.h b/src/Path/Path.h new file mode 100644 index 0000000..a4ac530 --- /dev/null +++ b/src/Path/Path.h @@ -0,0 +1,10 @@ +#ifndef YAPSSG_PATH_H +#define YAPSSG_PATH_H + +char *path_join(const char *left, const char *right); +char *path_make_default_output(const char *input_path); +char *path_resolve_new(const char *path); +char *path_resolve_from_file(const char *file_path, const char *relative_path); +int path_is_within(const char *parent, const char *candidate); + +#endif |
