| 71 | } |
| 72 | |
| 73 | void mime_quoted_printable::encode_finish(string* out) |
| 74 | { |
| 75 | encode(out); |
| 76 | if (m_encodeCnt == 1) { |
| 77 | QP_ENCODE(out, m_encodeBuf[0]); |
| 78 | } |
| 79 | m_encodeCnt = 0; |
| 80 | } |
| 81 | |
| 82 | void mime_quoted_printable::encode(const char* in, int n, string* out) |
| 83 | { |