finix/kernel/include/print.h

10 lines
232 B
C
Raw Permalink Normal View History

2023-07-16 06:54:32 +00:00
#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);