base64_encode
,
base64_decode
,
quoted_printable_decode
,
mime_word_decode
— MIME
recoding functions
#include
<strfunc.h>
char *
base64_encode
(const
void *data, size_t
*size);
void *
base64_decode
(const
char *string, size_t
*size);
char *
quoted_printable_decode
(const
char *string, size_t
*size);
char *
mime_word_decode
(const
char *string, size_t
*size);
Those functions used to recode data to/from various standarts of
MIME data transfer encodings. Their names are enough self-descriptive.
Lev Walkin <vlm@lionet.info>