25 #ifndef PRINT_UTILS_PRINTF_TO_H
26 #define PRINT_UTILS_PRINTF_TO_H
31 namespace print_utils {
34 static const int BUF_SIZE = 192;
37 inline void vprintfTo(Print& printer,
const char *fmt, va_list args) {
39 vsnprintf(buf, BUF_SIZE, fmt, args);
49 inline void printfTo(Print& printer,
const char* fmt, ...) {
52 vprintfTo(printer, fmt, args);