aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/print.h
diff options
context:
space:
mode:
authorMarvin Borner2020-08-15 17:42:36 +0200
committerMarvin Borner2020-08-15 17:42:36 +0200
commit9f16b032d38613ca95e321e1d1e652c43129c68b (patch)
tree33f71a84f60b496ed31a128ec542c5341c754b0d /libc/inc/print.h
parent32b8722128dfb4ca9e814940a23c2b22a283bb12 (diff)
Added libgui
Diffstat (limited to 'libc/inc/print.h')
-rw-r--r--libc/inc/print.h14
1 files changed, 14 insertions, 0 deletions
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