2020-12-07 09:47:53 +05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2020-11-29 17:57:34 +05:00
|
|
|
#include <kernaux/multiboot2.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2020-11-30 01:08:44 +05:00
|
|
|
#include "multiboot2_example2.h"
|
2020-11-29 17:57:34 +05:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2020-11-30 01:08:44 +05:00
|
|
|
assert(KernAux_Multiboot2_is_valid(&multiboot2_example2.multiboot2));
|
2020-11-29 17:57:34 +05:00
|
|
|
|
|
|
|
KernAux_Multiboot2_print(
|
2020-11-30 01:08:44 +05:00
|
|
|
&multiboot2_example2.multiboot2,
|
2020-11-29 17:57:34 +05:00
|
|
|
(void (*)(const char *format, ...))printf
|
|
|
|
);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|