| 61 | } |
| 62 | public: |
| 63 | void vS8Printf(const char* format, va_list va) |
| 64 | { |
| 65 | setEmpty(); |
| 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; |
no test coverage detected