diff options
author | Max Kellermann <max@duempel.org> | 2013-12-15 17:05:18 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-12-15 17:06:10 +0100 |
commit | e1ec65bd53db811bfc66d92346519c43a06b65c7 (patch) | |
tree | ad00fa0b711feefde3ab68c34a77c6f3298e7f83 /src/util/UriUtil.hxx | |
parent | 65b8e52d802fa42fcdd95457cfc2ecc8ecbc3793 (diff) |
UriUtil: add function uri_get_scheme()
Replaces g_uri_parse_scheme().
Diffstat (limited to 'src/util/UriUtil.hxx')
-rw-r--r-- | src/util/UriUtil.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/UriUtil.hxx b/src/util/UriUtil.hxx index 78d0a6bff..20e468103 100644 --- a/src/util/UriUtil.hxx +++ b/src/util/UriUtil.hxx @@ -31,6 +31,13 @@ gcc_pure bool uri_has_scheme(const char *uri); +/** + * Returns the scheme name of the specified URI, or an empty string. + */ +gcc_pure +std::string +uri_get_scheme(const char *uri); + gcc_pure const char * uri_get_suffix(const char *uri); |