summaryrefslogtreecommitdiff
path: root/utils/url.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-05-09 10:30:24 +0100
committerVincent Sanders <vince@kyllikki.org>2014-05-09 10:30:24 +0100
commit429d6e20f7989bb65736fb6f0058c33add7b0ac5 (patch)
treec51afb4e32393054c11eecde6f72614bb282f932 /utils/url.h
parent162e97cf019f501d37247094972b903b9de12960 (diff)
downloadnetsurf-429d6e20f7989bb65736fb6f0058c33add7b0ac5.tar.gz
netsurf-429d6e20f7989bb65736fb6f0058c33add7b0ac5.tar.bz2
remove unused url operations
Diffstat (limited to 'utils/url.h')
-rw-r--r--utils/url.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/utils/url.h b/utils/url.h
index 00cd1bc5f..f1aff0e93 100644
--- a/utils/url.h
+++ b/utils/url.h
@@ -66,27 +66,6 @@ bool url_host_is_ip_address(const char *host);
/**
- * Resolve a relative URL to absolute form.
- *
- * \param rel relative URL
- * \param base base URL, must be absolute and cleaned as by nsurl_create()
- * \param result pointer to pointer to buffer to hold absolute url
- * \return NSERROR_OK on success
- */
-nserror url_join(const char *rel, const char *base, char **result);
-
-
-/**
- * Return the host name from an URL.
- *
- * \param url an absolute URL
- * \param result pointer to pointer to buffer to hold host name
- * \return NSERROR_OK on success
- */
-nserror url_host(const char *url, char **result);
-
-
-/**
* Return the scheme name from an URL.
*
* See RFC 3986, 3.1 for reference.