quoted-printable.h revision e4f1a5fdad77884e1de516521504c15dc936fa9d
#ifndef QUOTED_PRINTABLE_H
#define QUOTED_PRINTABLE_H
/* Translates quoted printable data into binary. dest must be at least the
size of src, and may be same as src. Returns 0 if input was valid, -1 if
there were some decoding errors (which were skipped over).
This function may be called multiple times for parsing the same stream.
src_pos is updated to first non-translated character in src. */
/* Like quoted_printable_decode(), but handle src as the final block.
This allows src to end without LF. */
/* Decode MIME "Q" encoding. */
#endif