MCPcopy Create free account
hub / github.com/acl-dev/acl / decode_update

Method decode_update

lib_acl_cpp/src/mime/rfc2047.cpp:307–314  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

305};
306
307void 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))))

Callers 15

rfc2047_testFunction · 0.45
rfc2047_test2Function · 0.45
rfc2047_test_fileFunction · 0.45
mainFunction · 0.45
decodingFunction · 0.45
mainFunction · 0.45
mime_testFunction · 0.45
test1Function · 0.45
mainFunction · 0.45
mime_test1Function · 0.45
decodeMethod · 0.45
mime_attachMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected