summaryrefslogtreecommitdiffstats
path: root/src/filesystem.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-11-12 17:54:12 -0500
committerDavid Robillard <d@drobilla.net>2022-11-16 10:22:55 -0500
commitff9f776a48cdca700468f9d5a93625979d77e745 (patch)
tree51134aef6fd007f8a0b803a16cbf1ed06117189c /src/filesystem.h
parent67a33e70aa2b3f2f78742e773bac5ccb7be95c20 (diff)
downloadlilv-ff9f776a48cdca700468f9d5a93625979d77e745.tar.gz
lilv-ff9f776a48cdca700468f9d5a93625979d77e745.tar.bz2
lilv-ff9f776a48cdca700468f9d5a93625979d77e745.zip
Use zix_path_join()
Diffstat (limited to 'src/filesystem.h')
-rw-r--r--src/filesystem.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/filesystem.h b/src/filesystem.h
index 424afc6..db398f3 100644
--- a/src/filesystem.h
+++ b/src/filesystem.h
@@ -30,15 +30,6 @@ char*
lilv_path_absolute(const char* path);
/**
- Return `path` as an absolute path relative to `parent`.
-
- If `path` is absolute, an identical copy of it is returned. Otherwise, the
- returned path is relative to `parent`.
-*/
-char*
-lilv_path_absolute_child(const char* path, const char* parent);
-
-/**
Return `path` relative to `base` if possible.
If `path` is not within `base`, a copy is returned. Otherwise, an
@@ -64,10 +55,6 @@ lilv_path_parent(const char* path);
char*
lilv_path_filename(const char* path);
-/// Join path `a` and path `b` with a single directory separator between them
-char*
-lilv_path_join(const char* a, const char* b);
-
/**
Return `path` as a canonicalized absolute path.