From 162d024a53e1e31e00ff0b6f47dd4590edebc551 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 9 Aug 2020 16:51:01 +0200 Subject: Heavy restructuring of libc, kernel and apps --- lib/inc/print.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/inc/print.h (limited to 'lib/inc/print.h') diff --git a/lib/inc/print.h b/lib/inc/print.h new file mode 100644 index 0000000..925a5bd --- /dev/null +++ b/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 -- cgit v1.2.3