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

Method decode

lib_acl_cpp/src/mime/rfc2047.cpp:552–559  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

550}
551
552bool rfc2047::decode(const char* in, int n, string* out,
553 const char* to_charset /* = "gb2312" */,
554 bool strip_sp /* = false */, bool addInvalid /* = true */)
555{
556 rfc2047 rfc(strip_sp, false);
557 rfc.decode_update(in, n);
558 return rfc.decode_finish(to_charset, out, addInvalid);
559}
560
561} // namespace acl
562

Callers 5

test_url_coderFunction · 0.45
mainFunction · 0.45
http_header.cppFile · 0.45
read_callbackMethod · 0.45
handleMethod · 0.45

Calls 2

decode_updateMethod · 0.45
decode_finishMethod · 0.45

Tested by 1

test_url_coderFunction · 0.36