summaryrefslogtreecommitdiff
path: root/utils/url.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-02-28 13:06:30 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-02-28 13:06:30 +0000
commit5baf48859a71060bbe6e81335431fcda6c91a0f8 (patch)
tree5ad5eb675142bf2703e6cfd34f7bfeaae5bffb2d /utils/url.h
parent947c466c4ba63ad84c0121453975a34935d0c1e8 (diff)
parent2ce332f1b07af89ce387ca24cc6471f97c80154b (diff)
downloadnetsurf-5baf48859a71060bbe6e81335431fcda6c91a0f8.tar.gz
netsurf-5baf48859a71060bbe6e81335431fcda6c91a0f8.tar.bz2
Merge branch 'master' of git://git.netsurf-browser.org/netsurf into chris/bitmap-fonts
Diffstat (limited to 'utils/url.h')
-rw-r--r--utils/url.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/utils/url.h b/utils/url.h
index 143a0a0fe..aafdf1e15 100644
--- a/utils/url.h
+++ b/utils/url.h
@@ -27,12 +27,6 @@
#include "utils/errors.h"
-/** File url prefix. */
-#define FILE_SCHEME_PREFIX "file:///"
-
-/** File url prefix length. */
-#define FILE_SCHEME_PREFIX_LEN 8
-
/**
* Escape a string suitable for inclusion in an URL.
@@ -44,7 +38,8 @@
* \param result pointer to pointer to buffer to hold escaped string
* \return NSERROR_OK on success
*/
-nserror url_escape(const char *unescaped, size_t toskip, bool sptoplus, const char *escexceptions, char **result);
+nserror url_escape(const char *unescaped, size_t toskip, bool sptoplus,
+ const char *escexceptions, char **result);
/**