feat: moved libk stuff to libk folder

This commit is contained in:
2021-02-27 14:11:28 +01:00
parent 9fdc89a3a6
commit 934deb7984
19 changed files with 19 additions and 19 deletions

16
kernel/libk/kprint.h Normal file
View File

@@ -0,0 +1,16 @@
//
// Created by rick on 28-01-21.
//
#ifndef NEW_KERNEL_KPRINT_H
#define NEW_KERNEL_KPRINT_H
#endif //NEW_KERNEL_KPRINT_H
#include <types.h>
typedef void (*kprint_handler)(const char *);
void kprint_register(kprint_handler);
void kprint(const char *msg);