From 2067ca185220348b70b35c96e175dfb87cc05592 Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Sun, 6 Feb 2022 16:31:19 +0000 Subject: we have kprintf() --- kc/core/kprint.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'kc/core/kprint.h') 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 + int kputchar(int c); int kputs(const char *s); +int kprintf(const char *restrict format, ...); +int kvprintf(const char *restrict format, va_list arguments); -- cgit v1.3.1-1-g115d