1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-10-16 11:48:29 -04:00
libkernaux/tests/multiboot2_print1.c

25 lines
435 B
C
Raw Normal View History

2020-12-06 23:47:53 -05:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
2020-11-28 16:24:50 -05:00
#include <kernaux/multiboot2.h>
2020-11-29 07:57:34 -05:00
#include <assert.h>
2020-11-28 16:24:50 -05:00
#include <stdio.h>
#include "multiboot2_example1.h"
2020-11-28 16:24:50 -05:00
int main()
{
2020-11-29 07:57:34 -05:00
assert(KernAux_Multiboot2_is_valid(
(struct KernAux_Multiboot2*)multiboot2_example1
2020-11-29 07:57:34 -05:00
));
2020-11-28 16:24:50 -05:00
KernAux_Multiboot2_print(
(struct KernAux_Multiboot2*)multiboot2_example1,
2020-11-28 16:24:50 -05:00
(void (*)(const char *format, ...))printf
);
return 0;
}