From: Daniel Stenberg Date: Mon, 23 Feb 2004 11:44:03 +0000 (+0000) Subject: switch the arguments according to the c source X-Git-Tag: curl-7_11_1~243 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34d247bc4e27b00e82a6329ac68b555dfcf2bcbe;p=thirdparty%2Fcurl.git switch the arguments according to the c source --- diff --git a/lib/base64.h b/lib/base64.h index f731acfade..307148eef9 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