mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
9 lines
212 B
C
9 lines
212 B
C
#ifndef TAILIX_KERNEL_INCLUDED_LOGGER
|
|
#define TAILIX_KERNEL_INCLUDED_LOGGER 1
|
|
|
|
void logger_initialize();
|
|
void logger_info(const char *s);
|
|
void logger_warn(const char *s);
|
|
void logger_fail(const char *s);
|
|
|
|
#endif
|