aboutsummaryrefslogtreecommitdiff
path: root/lib/escape.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-03-22 11:40:58 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-03-22 11:40:58 +0000
commitf8d883355d8a0965534ef8a6da99bd7195cf56d0 (patch)
tree737bc2b5ab37c2537a98aa82c2ee10dd6889dac3 /lib/escape.h
parentc23df41d8315ac2e939f330358eccb2a844282a9 (diff)
the new escape/unescape function setup
Diffstat (limited to 'lib/escape.h')
-rw-r--r--lib/escape.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/escape.h b/lib/escape.h
index 45a862aaf..1ec5c7ddd 100644
--- a/lib/escape.h
+++ b/lib/escape.h
@@ -26,7 +26,7 @@
/* Escape and unescape URL encoding in strings. The functions return a new
* allocated string or NULL if an error occurred. */
-char *curl_escape(char *string);
+char *curl_escape(char *string, int length);
char *curl_unescape(char *string, int length);
#endif