| 501 | } |
| 502 | |
| 503 | void charset_conv::update_finish(acl::string* out) |
| 504 | { |
| 505 | #ifdef HAVE_H_ICONV |
| 506 | if (m_pInBuf && LEN(m_pInBuf) > 0 && m_addInvalid) { |
| 507 | out->append(STR(m_pInBuf), LEN(m_pInBuf)); |
| 508 | ACL_VSTRING_RESET(m_pInBuf); |
| 509 | } |
| 510 | #endif |
| 511 | } |
| 512 | |
| 513 | int charset_conv::push_pop(const char* in, size_t len, |
| 514 | acl::string* out, size_t max /* = 0 */) |
no test coverage detected