#ifndef QP_DECODER_H
#define QP_DECODER_H
/* Initialize quoted-printable decoder. Write all the decoded output to dest. */
/* Translate more quoted printable data into binary. Returns 0 if input was
valid, -1 if there were some decoding errors (which were skipped over).
LFs without preceding CR are returned as CRLF (but =0A isn't). */
const char **error_r);
/* Finish decoding any pending input. Returns the same as qp_decoder_more().
This function also resets the entire decoder state, so the same decoder can
be used to decode more data if wanted. */
#endif