opuntiaOS - an operating system targeting x86 and ARMv7
at master 14 lines 332 B view raw
1#ifndef _KERNEL_LIBKERN_LOG_H 2#define _KERNEL_LIBKERN_LOG_H 3 4#include <libkern/printf.h> 5#include <libkern/types.h> 6 7void logger_setup(); 8 9int log(const char* format, ...); 10int log_warn(const char* format, ...); 11int log_error(const char* format, ...); 12int log_not_formatted(const char* format, ...); 13 14#endif // _KERNEL_LIBKERN_LOG_H