summaryrefslogtreecommitdiff
path: root/kernel/include/print.h
blob: 7dbd298420330ab6b1946da016dfee03ee768869 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include <stddef.h>
#include <stdarg.h>

extern void putchar(int c);
extern void puts(const char* s);
extern void printk(const char *restrict format, ...);
extern void vprintk(const char *restrict format, va_list ap);