2024-09-07 08:40:46 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
2024-09-20 06:40:36 -04:00
|
|
|
#define KERN_EMERG "0"
|
|
|
|
#define KERN_ALERT "1"
|
|
|
|
#define KERN_CRIT "2"
|
|
|
|
#define KERN_ERR "3"
|
|
|
|
#define KERN_WARNING "4"
|
|
|
|
#define KERN_NOTICE "5"
|
|
|
|
#define KERN_INFO "6"
|
|
|
|
#define KERN_DEBUG "7"
|
|
|
|
#define KERN_DEFAULT "8"
|
2024-09-07 08:40:46 -04:00
|
|
|
|
2024-09-20 06:40:36 -04:00
|
|
|
int kprintf(const char *restrict format, ...);
|
|
|
|
int kvprintf(const char *restrict format, va_list ap);
|