diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-09-08 14:16:54 -0400 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-09-08 14:16:54 -0400 |
commit | 403c15f3937e612e8f25e63f65fcee8bec3090e3 (patch) | |
tree | 52d5d5e2824c3c76127614ed08d54ce2911c226a /dpi/dpiutil.h | |
parent | 5231f9206c6c31ae0d53a5c52d6bb75d3d3b3a9e (diff) |
Fixed URL unescaping in the datauri DPI
Diffstat (limited to 'dpi/dpiutil.h')
-rw-r--r-- | dpi/dpiutil.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dpi/dpiutil.h b/dpi/dpiutil.h index 239f5862..b137fa0c 100644 --- a/dpi/dpiutil.h +++ b/dpi/dpiutil.h @@ -72,6 +72,12 @@ void sock_handler_free(SockHandler *sh); char *Escape_uri_str(const char *str, const char *p_esc_set); /* + * Unescape %XX sequences in a string. + * Return value: a new unescaped string + */ +char *Unescape_uri_str(const char *str); + +/* * Escape unsafe characters as html entities. * Return value: New escaped string. */ |