summaryrefslogtreecommitdiff
path: root/kc/core/kprint.h
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2022-02-06 16:31:19 +0000
committerAda Christine <adachristine18@gmail.com>2022-02-06 16:31:19 +0000
commit2067ca185220348b70b35c96e175dfb87cc05592 (patch)
tree860578e275ec43cef12f4bfb355d258b918ea135 /kc/core/kprint.h
parent7b91c46a8ebf38b2c1c80c1f1e63c4d4dfd10640 (diff)
we have kprintf()
Diffstat (limited to 'kc/core/kprint.h')
-rw-r--r--kc/core/kprint.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/kc/core/kprint.h b/kc/core/kprint.h
index 5b307a2..0c547ea 100644
--- a/kc/core/kprint.h
+++ b/kc/core/kprint.h
@@ -1,5 +1,9 @@
#pragma once
+#include <stdarg.h>
+
int kputchar(int c);
int kputs(const char *s);
+int kprintf(const char *restrict format, ...);
+int kvprintf(const char *restrict format, va_list arguments);