| 65 | } |
| 66 | |
| 67 | void rfc2047::debug_rfc2047() const |
| 68 | { |
| 69 | std::list<rfc2047_entry*>::const_iterator cit = m_List.begin(); |
| 70 | for (; cit != m_List.end(); ++cit) { |
| 71 | printf(">>> debug_rfc2047: charset: %s, code: %c, data: %s\n", |
| 72 | (*cit)->pCharset->c_str(), |
| 73 | (*cit)->coding, |
| 74 | (*cit)->pData->c_str()); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | #define SKIP(s, n) { \ |
| 79 | if (n > 0 && *s == '\r') { \ |
no test coverage detected