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

Function encoding

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

Source from the content-addressed store, hash-verified

3#include <stdio.h>
4
5static void encoding(const char* s)
6{
7 acl::mime_xxcode coder(false, false);
8 acl::string out;
9
10 coder.encode_update(s, strlen(s), &out);
11 coder.encode_finish(&out);
12 printf(">>>%s\n", out.c_str());
13}
14
15static void decoding(const char* s)
16{

Callers

nothing calls this directly

Calls 3

encode_updateMethod · 0.45
encode_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…