aboutsummaryrefslogtreecommitdiffstats
path: root/camel/gmime-base64.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/gmime-base64.c')
-rw-r--r--camel/gmime-base64.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/camel/gmime-base64.c b/camel/gmime-base64.c
index a75e5c0f17..3611cc5247 100644
--- a/camel/gmime-base64.c
+++ b/camel/gmime-base64.c
@@ -17,7 +17,7 @@ static char *base64_alphabet =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
/**
- * gmime_encode_base64:
+ * gmime_encode_base64_to_stream:
* @input: The data source to be encoded in base64 format
* @output: Where to put the encoded information in.
*
@@ -25,7 +25,7 @@ static char *base64_alphabet =
* base64 encoding and stores it on the @output CamelStream object
*/
void
-gmime_encode_base64 (CamelStream *input, CamelStream *output)
+gmime_encode_base64_to_stream (CamelStream *input, CamelStream *output)
{
char buffer [BSIZE];
char obuf [80]; /* Output is limited to 76 characters, rfc2045 */
@@ -83,6 +83,11 @@ gmime_encode_base64 (CamelStream *input, CamelStream *output)
}
+
+
+
+
+
/**
* gmime_decode_base64:
* @input: A buffer in base64 format.