| 80 | } |
| 81 | |
| 82 | void mime_quoted_printable::encode(const char* in, int n, string* out) |
| 83 | { |
| 84 | mime_quoted_printable coder(false, false); |
| 85 | coder.encode_update(in, n, out); |
| 86 | coder.encode_finish(out); |
| 87 | } |
| 88 | |
| 89 | void mime_quoted_printable::decode(const char* in, int n, string* out) |
| 90 | { |
nothing calls this directly
no test coverage detected