| 87 | } |
| 88 | |
| 89 | void mime_quoted_printable::decode(const char* in, int n, string* out) |
| 90 | { |
| 91 | mime_quoted_printable decoder(false, false); |
| 92 | decoder.decode_update(in, n, out); |
| 93 | decoder.decode_finish(out); |
| 94 | } |
| 95 | |
| 96 | void mime_quoted_printable::encode(string* out) |
| 97 | { |
nothing calls this directly
no test coverage detected