mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
33 lines
575 B
C
33 lines
575 B
C
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <kernaux/multiboot2.h>
|
|
|
|
#include <assert.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
#include "multiboot2_header_example2.h"
|
|
|
|
static void my_printf(const char *format, ...)
|
|
{
|
|
va_list va;
|
|
va_start(va, format);
|
|
vprintf(format, va);
|
|
va_end(va);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
assert(KernAux_Multiboot2_Header_is_valid(
|
|
&multiboot2_header_example2.multiboot2_header
|
|
));
|
|
|
|
KernAux_Multiboot2_Header_print(
|
|
&multiboot2_header_example2.multiboot2_header,
|
|
my_printf
|
|
);
|
|
|
|
return 0;
|
|
}
|