From 9f16b032d38613ca95e321e1d1e652c43129c68b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 15 Aug 2020 17:42:36 +0200 Subject: Added libgui --- libc/inc/print.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 libc/inc/print.h (limited to 'libc/inc/print.h') diff --git a/libc/inc/print.h b/libc/inc/print.h new file mode 100644 index 0000000..04668b2 --- /dev/null +++ b/libc/inc/print.h @@ -0,0 +1,14 @@ +// 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); +int print(const char *str); + +#endif -- cgit v1.2.3