1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-10-30 11:54:01 -04:00
libkernaux/tests/multiboot2_info_print1.c

44 lines
840 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-28 16:24:50 -05:00
#include <kernaux/multiboot2.h>
2020-11-29 07:57:34 -05:00
#include <assert.h>
2022-02-01 22:09:54 -05:00
#include <stdarg.h>
2020-11-28 16:24:50 -05:00
#include <stdio.h>
2022-01-12 23:05:34 -05:00
#include "multiboot2_info_example1.h"
2020-11-28 16:24:50 -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-28 16:24:50 -05:00
{
2022-01-12 22:59:52 -05:00
assert(KernAux_Multiboot2_Info_is_valid(
2022-01-12 23:05:34 -05:00
(struct KernAux_Multiboot2_Info*)multiboot2_info_example1
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
(struct KernAux_Multiboot2_Info*)multiboot2_info_example1,
&display
2020-11-28 16:24:50 -05:00
);
}