| 66 | vprintf_with_callback(format, va, transmitS8Printf, this); |
| 67 | } |
| 68 | void S8Printf(const char* format, ...) __attribute__((__format__(__printf__, 2, 3))) |
| 69 | { |
| 70 | va_list va; |
| 71 | |
| 72 | va_start (va, format); |
| 73 | vS8Printf(format, va); |
| 74 | va_end(va); |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 |
no outgoing calls
no test coverage detected