1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-07-07 18:51:58 -04:00
libkernaux/include/kernaux/printf.h
2020-12-07 03:15:56 +05:00

18 lines
351 B
C

#ifndef KERNAUX_INCLUDED_PRINTF
#define KERNAUX_INCLUDED_PRINTF 1
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
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