| 13 | } |
| 14 | |
| 15 | static 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 | |
| 25 | static void usage(const char* procname) |
| 26 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…