#pragma once
#include <stddef.h>
#include <stdbool.h>
void* malloc(size_t);
void free(void*);
// TODO: what is this for?