1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-10-30 11:54:01 -04:00
libkernaux/include/kernaux/printf.h

19 lines
349 B
C
Raw Normal View History

2020-12-06 16:37:53 -05:00
#ifndef KERNAUX_INCLUDED_PRINTF
2021-12-20 01:17:53 -05:00
#define KERNAUX_INCLUDED_PRINTF
2020-12-06 16:37:53 -05:00
#ifdef __cplusplus
extern "C" {
#endif
2021-12-13 15:46:58 -05:00
#include <stdarg.h>
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