diff options
Diffstat (limited to 'camel/camel-mime-utils.h')
-rw-r--r-- | camel/camel-mime-utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/camel/camel-mime-utils.h b/camel/camel-mime-utils.h index 899fffbae5..d426668cb7 100644 --- a/camel/camel-mime-utils.h +++ b/camel/camel-mime-utils.h @@ -189,6 +189,10 @@ int base64_encode_step(unsigned char *in, int len, gboolean break_lines, unsigne int base64_encode_close(unsigned char *in, int inlen, gboolean break_lines, unsigned char *out, int *state, int *save); int uudecode_step (unsigned char *in, int len, unsigned char *out, int *state, guint32 *save, char *uulen); +int uuencode_step (unsigned char *in, int len, unsigned char *out, unsigned char *uubuf, int *state, + guint32 *save, char *uulen); +int uuencode_close (unsigned char *in, int len, unsigned char *out, unsigned char *uubuf, int *state, + guint32 *save, char *uulen); int quoted_decode_step(unsigned char *in, int len, unsigned char *out, int *savestate, int *saveme); |