diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-23 11:44:03 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-23 11:44:03 +0000 |
commit | 34d247bc4e27b00e82a6329ac68b555dfcf2bcbe (patch) | |
tree | 1e666a5965ae60bd5e64d054884601daa2a01dec /lib/base64.h | |
parent | 99bc7e5fd36c75fd7a35eeec05cd4c5854d0d1a9 (diff) | |
download | curl-34d247bc4e27b00e82a6329ac68b555dfcf2bcbe.tar.gz |
switch the arguments according to the c source
Diffstat (limited to 'lib/base64.h')
-rw-r--r-- | lib/base64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base64.h b/lib/base64.h index f731acfad..307148eef 100644 --- a/lib/base64.h +++ b/lib/base64.h @@ -23,5 +23,5 @@ * $Id$ ***************************************************************************/ size_t Curl_base64_encode(const char *input, size_t size, char **str); -size_t Curl_base64_decode(char *dest, const char *source); +size_t Curl_base64_decode(const char *source, char *dest); #endif |