Difference between revisions of "Quoted-printable"
From Mailutils
Jump to navigationJump to search (Initial revision) |
m |
||
Line 22: | Line 22: | ||
[[Category:Filters]] | [[Category:Filters]] | ||
+ | [[Category:C API]] |
Revision as of 12:26, 26 October 2011
The quoted-printable and Q filters encode or decode the input using the quoted-printable encoding.
These filters are described by the following objects (declared mailutils/filter.h):
extern mu_filter_record_t mu_qp_filter;
extern mu_filter_record_t mu_rfc_2047_Q_filter;
The following example illustrates how to create a read-only filter for encoding the input stream to quoted-printable form:
int rc; /* Return code */
mu_stream_t flt; /* Filter stream */
rc = mu_filter_stream_create (&flt, input, "quoted-printable", MU_FILTER_ENCODE, MU_STREAM_READ);