feat: reformatted code base to be more standard
This commit is contained in:
22
include/myke/libk/kprint.h
Normal file
22
include/myke/libk/kprint.h
Normal file
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// Created by rick on 28-01-21.
|
||||
//
|
||||
|
||||
#ifndef NEW_KERNEL_KPRINT_H
|
||||
#define NEW_KERNEL_KPRINT_H
|
||||
|
||||
#endif //NEW_KERNEL_KPRINT_H
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
typedef void (*kprint_handler)(const char *);
|
||||
|
||||
void kprint_register(kprint_handler);
|
||||
|
||||
void kprint(const char *msg);
|
||||
|
||||
void kprint_sync(const char* msg);
|
||||
|
||||
void kprint_init();
|
||||
|
||||
void kprint_start_task();
|
||||
Reference in New Issue
Block a user