| 528 | } |
| 529 | |
| 530 | bool rfc2047::encode_finish(string* out) |
| 531 | { |
| 532 | acl_assert(m_pCurrentEntry); |
| 533 | acl_assert(m_coder); |
| 534 | acl_assert(out); |
| 535 | |
| 536 | m_coder->encode_finish(out); |
| 537 | *out << "?="; |
| 538 | return true; |
| 539 | } |
| 540 | |
| 541 | bool rfc2047::encode(const char* in, int n, string* out, |
| 542 | const char* charset /* = "gb2312" */, char coding /* = 'B' */, |
no outgoing calls
no test coverage detected