#ifndef KERNAUX_INCLUDED_PRINTF #define KERNAUX_INCLUDED_PRINTF #ifdef __cplusplus extern "C" { #endif #include void kernaux_printf(void (*putchar)(char), const char *format, ...) __attribute__((format(printf, 2, 3))); void kernaux_printf_va(void (*putchar)(char), const char *format, va_list va); #ifdef __cplusplus } #endif #endif