summaryrefslogtreecommitdiffstats
path: root/Utilities/cmcurl/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'Utilities/cmcurl/base64.h')
-rw-r--r--Utilities/cmcurl/base64.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/Utilities/cmcurl/base64.h b/Utilities/cmcurl/base64.h
index 307148e..59742bc 100644
--- a/Utilities/cmcurl/base64.h
+++ b/Utilities/cmcurl/base64.h
@@ -1,18 +1,18 @@
#ifndef __BASE64_H
#define __BASE64_H
/***************************************************************************
- * _ _ ____ _
- * Project ___| | | | _ \| |
- * / __| | | | |_) | |
- * | (__| |_| | _ <| |___
+ * _ _ ____ _
+ * Project ___| | | | _ \| |
+ * / __| | | | |_) | |
+ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at http://curl.haxx.se/docs/copyright.html.
- *
+ *
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
@@ -22,6 +22,7 @@
*
* $Id$
***************************************************************************/
-size_t Curl_base64_encode(const char *input, size_t size, char **str);
-size_t Curl_base64_decode(const char *source, char *dest);
+size_t Curl_base64_encode(struct SessionHandle *data,
+ const char *input, size_t size, char **str);
+size_t Curl_base64_decode(const char *source, unsigned char **outptr);
#endif