1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-11-13 11:04:27 -05:00
libkernaux/tests/multiboot2_info_print2.c

44 lines
808 B
C
Raw Normal View History

2020-12-06 23:47:53 -05:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#define KERNAUX_ACCESS_PROTECTED
#include <kernaux/generic/display.h>
#include <kernaux/macro.h>
2020-11-29 07:57:34 -05:00
#include <kernaux/multiboot2.h>
#include <assert.h>
2022-02-01 22:09:54 -05:00
#include <stdarg.h>
2020-11-29 07:57:34 -05:00
#include <stdio.h>
2022-01-12 23:05:34 -05:00
#include "multiboot2_info_example2.h"
2020-11-29 07:57:34 -05:00
static void my_putc(void *display KERNAUX_UNUSED, char c)
{
putchar(c);
}
static
void my_vprintf(void *display KERNAUX_UNUSED, const char *format, va_list va)
2022-02-01 22:09:54 -05:00
{
vprintf(format, va);
}
static const struct KernAux_Display display = {
.putc = my_putc,
.vprintf = my_vprintf,
};
2022-06-20 14:01:56 -04:00
void test_main()
2020-11-29 07:57:34 -05:00
{
2022-01-12 22:59:52 -05:00
assert(KernAux_Multiboot2_Info_is_valid(
2022-01-12 23:05:34 -05:00
&multiboot2_info_example2.multiboot2_info
2022-01-12 22:59:52 -05:00
));
2020-11-29 07:57:34 -05:00
2022-01-12 22:59:52 -05:00
KernAux_Multiboot2_Info_print(
2022-01-12 23:05:34 -05:00
&multiboot2_info_example2.multiboot2_info,
&display
2020-11-29 07:57:34 -05:00
);
}