| 166 | } |
| 167 | public: |
| 168 | void vSWPrintf(const char* format, va_list va) |
| 169 | { |
| 170 | setEmpty(); |
| 171 | vwprintf_with_callback(format, va, transmitSPrintf, this); |
| 172 | } |
| 173 | void SWPrintf(const char* format, ...) __attribute__((__format__(__printf__, 2, 3))) |
| 174 | { |
| 175 | va_list va; |
no test coverage detected