libkernaux/src/multiboot2/header_is_valid.c

15 lines
261 B
C
Raw Normal View History

2022-01-13 14:01:51 +00:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <kernaux/multiboot2.h>
#include <stdbool.h>
bool KernAux_Multiboot2_Header_is_valid(
const struct KernAux_Multiboot2_Header *const multiboot2_header
) {
// TODO: write this
return false;
}