switch the arguments according to the c source

This commit is contained in:
Daniel Stenberg 2004-02-23 11:44:03 +00:00
parent 99bc7e5fd3
commit 34d247bc4e
1 changed files with 1 additions and 1 deletions

View File

@ -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