aboutsummaryrefslogtreecommitdiffstats
path: root/serd/serd.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-02-04 20:49:28 +0100
committerDavid Robillard <d@drobilla.net>2020-06-21 18:12:03 +0200
commit77b496a15d3c263a1bbc7c4cc56583f4014c1d22 (patch)
treea74229920fd00c810a7ab70d46abde74247ea008 /serd/serd.h
parentafdb3664eeddd1285473ce5c5bbc5db2fe62b6fc (diff)
downloadserd-77b496a15d3c263a1bbc7c4cc56583f4014c1d22.tar.gz
serd-77b496a15d3c263a1bbc7c4cc56583f4014c1d22.tar.bz2
serd-77b496a15d3c263a1bbc7c4cc56583f4014c1d22.zip
Remove serd_uri_to_path()
Diffstat (limited to 'serd/serd.h')
-rw-r--r--serd/serd.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/serd/serd.h b/serd/serd.h
index b4e3a3a5..55232681 100644
--- a/serd/serd.h
+++ b/serd/serd.h
@@ -376,17 +376,6 @@ static const SerdURI SERD_URI_NULL = {
};
/**
- Return the local path for `uri`, or NULL if `uri` is not a file URI.
- Note this (inappropriately named) function only removes the file scheme if
- necessary, and returns `uri` unmodified if it is an absolute path. Percent
- encoding and other issues are not handled, to properly convert a file URI to
- a path, use serd_file_uri_parse().
-*/
-SERD_API
-const char*
-serd_uri_to_path(const char* uri);
-
-/**
Get the unescaped path and hostname from a file URI.
@param uri A file URI.
@param hostname If non-NULL, set to the hostname, if present.