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