blob: e5157e62257fde640b986efafab65628afbf1d30 [file] [log] [blame]
#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <ostream>
#include <new>
constexpr static const uintptr_t TITLE_SIZE = 80;
template<uintptr_t CAP>
using CArrayString = int8_t[CAP];
struct Book {
CArrayString<TITLE_SIZE> title;
CArrayString<40> author;
};
extern "C" {
void root(Book *a);
} // extern "C"