| 3 | #include <stdio.h> |
| 4 | |
| 5 | static 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 | |
| 15 | static void decoding(const char* s) |
| 16 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…