summaryrefslogtreecommitdiff
path: root/utils/url.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2006-01-18 00:54:27 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2006-01-18 00:54:27 +0000
commit26e7a218634a19d074ec11d5586e277d8c0e9c32 (patch)
tree71b78687c6a524dbcb83c336fe4f804777c9f8f0 /utils/url.h
parente8ef816111d029870b530b417641e2331f8c4f6b (diff)
downloadnetsurf-26e7a218634a19d074ec11d5586e277d8c0e9c32.tar.gz
netsurf-26e7a218634a19d074ec11d5586e277d8c0e9c32.tar.bz2
[project @ 2006-01-18 00:54:27 by rjw]
Tidy up code to use generic url<->path functions. svn path=/import/netsurf/; revision=2022
Diffstat (limited to 'utils/url.h')
-rw-r--r--utils/url.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/url.h b/utils/url.h
index 94aa626ca..3dd4b9859 100644
--- a/utils/url.h
+++ b/utils/url.h
@@ -28,4 +28,7 @@ url_func_result url_nice(const char *url, char **result,
bool remove_extensions);
url_func_result url_escape(const char *unescaped, char **result);
+char *path_to_url(const char *path);
+char *url_to_path(const char *url);
+
#endif