1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:07:34 +00:00

Move kprintf to its own file. It has nothing to do with VGA anymore.

This commit is contained in:
Andreas Kling 2018-10-22 13:20:35 +02:00
parent 702d308e67
commit bae59609e3
7 changed files with 188 additions and 187 deletions

5
Kernel/kprintf.h Normal file
View file

@ -0,0 +1,5 @@
#pragma once
int kprintf(const char *fmt, ...);
int ksprintf(char* buf, const char *fmt, ...);