| 305 | }; |
| 306 | |
| 307 | void rfc2047::decode_update(const char* in, int n) |
| 308 | { |
| 309 | while (n > 0) { |
| 310 | int ret = (this->*(statusTab[m_status].func))(in, n); |
| 311 | in += n - ret; |
| 312 | n = ret; |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | #define EQ(x, y) (((x) == NULL && (y) == NULL) \ |
| 317 | || ((x) != NULL && (y) != NULL && !strcasecmp((x), (y)))) |
no outgoing calls
no test coverage detected