| 91 | static write_fn s_write_callback; |
| 92 | |
| 93 | static void write_callback(void*, const char* str) |
| 94 | { |
| 95 | log_info("%s", str); |
| 96 | } |
| 97 | |
| 98 | static void log_callback(void* ctx, const char* fmt, va_list ap) { |
| 99 | static acl::string* buf = nullptr; |
nothing calls this directly
no test coverage detected
searching dependent graphs…