#ifndef QP_ENCODER_H
enum qp_encoder_flag {
/* encode spaces as underscores, encode crlfs, adds =?utf-8?q?..?= encapsulation */
/* treat input as true binary, no lf => crlf conversion, only CRLF is preserved */
};
/* Initialize quoted-printable encoder. Write all the encoded output to dest. */
enum qp_encoder_flag flags);
/* Translate more (binary) data into quoted printable.
If QP_ENCODER_FLAG_BINARY_DATA is not set, text is assumed to be in
UTF-8 (but not enforced). No other character sets are supported. */
/* Finish encoding any pending input.
This function also resets the entire encoder state, so the same encoder can
be used to encode more data if wanted. */
#endif