mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-06-01 17:27:59 +00:00
14 lines
276 B
C
14 lines
276 B
C
#include <libinit/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");
|
|
}
|