| 69 | } |
| 70 | |
| 71 | template <typename... Args> int printf(const char* fmt, Args... args) |
| 72 | { |
| 73 | return m_printf(fmt, args...); |
| 74 | } |
| 75 | |
| 76 | /** @brief output a block of data in hex format |
| 77 | * @param tag brief name to display with the data block. Specify nullptr if not required. |
no test coverage detected