1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-27 11:14:42 -05:00
libkernaux/include/kernaux/printf.h

19 lines
351 B
C
Raw Normal View History

2020-12-06 16:37:53 -05:00
#ifndef KERNAUX_INCLUDED_PRINTF
#define KERNAUX_INCLUDED_PRINTF 1
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
2020-12-06 17:07:12 -05:00
void kernaux_printf(void (*putchar)(char), const char *format, ...)
__attribute__((format(printf, 2, 3)));
2020-12-06 16:37:53 -05:00
void kernaux_printf_va(void (*putchar)(char), const char *format, va_list va);
#ifdef __cplusplus
}
#endif
#endif