YACDB
Yet Another C(rappy) Database
diskiod.h
Go to the documentation of this file.
1
9#pragma once
10#include "diskio.h"
11
12void dump_header();
13
14void dump_node(struct node *node);
Interactions with the disk and cache.
void dump_header()
Prints the database header for debugging purposes.
Definition: disckiod.c:6
void dump_node(struct node *node)
Prints a node for debugging purposes.
Definition: disckiod.c:36
The basic structure stored in memory.
Definition: diskio.h:51