aboutsummaryrefslogtreecommitdiffstats
path: root/serd
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-02-04 20:49:28 +0100
committerDavid Robillard <d@drobilla.net>2019-04-13 19:15:32 +0200
commita0b173de316be27bea4cd00cd88c9bf65016df45 (patch)
treea8c9d4a0cb3e6c677660f8335c8dcae25871be4c /serd
parent2cdb106b83c9e471a9a8ee9ba623d9943323e58e (diff)
downloadserd-a0b173de316be27bea4cd00cd88c9bf65016df45.tar.gz
serd-a0b173de316be27bea4cd00cd88c9bf65016df45.tar.bz2
serd-a0b173de316be27bea4cd00cd88c9bf65016df45.zip
Remove serd_uri_to_path()
Diffstat (limited to 'serd')
-rw-r--r--serd/serd.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/serd/serd.h b/serd/serd.h
index 91903c7e..abc2cc10 100644
--- a/serd/serd.h
+++ b/serd/serd.h
@@ -383,17 +383,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.