aboutsummaryrefslogtreecommitdiffstats
path: root/include/serd
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-02-04 20:49:28 +0100
committerDavid Robillard <d@drobilla.net>2021-03-07 15:32:23 -0500
commit96bcba9cd94879794de477ae7c5c04971fbd6f32 (patch)
treeced8ec83621bb2ac6f90fc1d9fc0e5b7f38e2c28 /include/serd
parentb9d0b9f058807d7253e88d37822c47b5462b65ea (diff)
downloadserd-96bcba9cd94879794de477ae7c5c04971fbd6f32.tar.gz
serd-96bcba9cd94879794de477ae7c5c04971fbd6f32.tar.bz2
serd-96bcba9cd94879794de477ae7c5c04971fbd6f32.zip
Remove serd_uri_to_path()
Diffstat (limited to 'include/serd')
-rw-r--r--include/serd/serd.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/serd/serd.h b/include/serd/serd.h
index 32488e18..cdcadcdb 100644
--- a/include/serd/serd.h
+++ b/include/serd/serd.h
@@ -61,18 +61,6 @@
SERD_API \
SERD_CONST_FUNC
-#ifndef SERD_DISABLE_DEPRECATED
-# if defined(__clang__) && __clang_major__ >= 7
-# define SERD_DEPRECATED_BY(rep) __attribute__((deprecated("", rep)))
-# elif defined(__GNUC__) && __GNUC__ > 4
-# define SERD_DEPRECATED_BY(rep) __attribute__((deprecated("Use " rep)))
-# elif defined(__GNUC__)
-# define SERD_DEPRECATED_BY(rep) __attribute__((deprecated))
-# else
-# define SERD_DEPRECATED_BY(rep)
-# endif
-#endif
-
#ifdef __cplusplus
extern "C" {
# if defined(__GNUC__)
@@ -361,22 +349,6 @@ typedef size_t (*SerdSink)(const void* SERD_NONNULL buf,
static const SerdURI SERD_URI_NULL =
{{NULL, 0}, {NULL, 0}, {NULL, 0}, {NULL, 0}, {NULL, 0}, {NULL, 0}};
-#ifndef SERD_DISABLE_DEPRECATED
-
-/**
- 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
-SERD_DEPRECATED_BY("serd_file_uri_parse")
-const uint8_t* SERD_NULLABLE
-serd_uri_to_path(const uint8_t* SERD_NONNULL uri);
-
-#endif
-
/**
Get the unescaped path and hostname from a file URI.