diff options
Diffstat (limited to 'src/util/UriUtil.hxx')
-rw-r--r-- | src/util/UriUtil.hxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/util/UriUtil.hxx b/src/util/UriUtil.hxx index 78d0a6bff..8e00f8cd8 100644 --- a/src/util/UriUtil.hxx +++ b/src/util/UriUtil.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2013 The Music Player Daemon Project + * Copyright (C) 2003-2014 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -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); |