mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-29 15:57:50 +00:00
14 lines
268 B
C
14 lines
268 B
C
#include <init.h>
|
|
|
|
#include "printf.h"
|
|
|
|
void init_log(const char *fmt, ...)
|
|
{
|
|
printf_libinit("\eCCCCCC[\e0088FFinit\eCCCCCC] \eAAAAAA");
|
|
va_list args;
|
|
va_start(args, fmt);
|
|
vprintf_libinit(fmt, args);
|
|
va_end(args);
|
|
printf_libinit("\eCCCCCC");
|
|
}
|