diff options
Diffstat (limited to 'src/lib/inc/print.h')
-rw-r--r-- | src/lib/inc/print.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib/inc/print.h b/src/lib/inc/print.h new file mode 100644 index 0000000..1a2419b --- /dev/null +++ b/src/lib/inc/print.h @@ -0,0 +1,13 @@ +// MIT License, Copyright (c) 2020 Marvin Borner +// I may (re)move this in the future // TODO + +#ifndef PRINT_H +#define PRINT_H + +#include <arg.h> + +int printf(const char *format, ...); +int vprintf(const char *format, va_list ap); +int vsprintf(char *str, const char *format, va_list ap); + +#endif |