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

Function decoding

lib_acl_cpp/samples/mime/mime_xxcode/main.cpp:15–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13}
14
15static void decoding(const char* s)
16{
17 acl::mime_xxcode coder(false, false);
18 acl::string out;
19
20 coder.decode_update(s, strlen(s), &out);
21 coder.decode_finish(&out);
22 printf(">>>%s\n", out.c_str());
23}
24
25static void usage(const char* procname)
26{

Callers

nothing calls this directly

Calls 3

decode_updateMethod · 0.45
decode_finishMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…