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

Method encode

lib_acl_cpp/src/mime/mime_quoted_printable.cpp:82–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82void mime_quoted_printable::encode(const char* in, int n, string* out)
83{
84 mime_quoted_printable coder(false, false);
85 coder.encode_update(in, n, out);
86 coder.encode_finish(out);
87}
88
89void mime_quoted_printable::decode(const char* in, int n, string* out)
90{

Callers

nothing calls this directly

Calls 3

encode_updateMethod · 0.45
encode_finishMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected