mirror of
https://github.com/tailix/libkernaux.git
synced 2025-10-02 23:13:56 -04:00
Add function "kernaux_printf"
This commit is contained in:
parent
1bdda5b53e
commit
ceff5cf197
8 changed files with 53 additions and 3 deletions
17
include/kernaux/printf.h
Normal file
17
include/kernaux/printf.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#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, ...);
|
||||
void kernaux_printf_va(void (*putchar)(char), const char *format, va_list va);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue