aboutsummaryrefslogtreecommitdiff
path: root/include/db.h
diff options
context:
space:
mode:
authorSoikk2022-07-23 01:46:24 +0200
committerSoikk2022-07-23 01:46:24 +0200
commit28578b192d0828a9820983b5624b9bcc3577cd18 (patch)
tree2f30b1730f30a7eeee80995ee3984c10f5bdc2ff /include/db.h
parent377dc104be127291ede5b32640c23eea0ba6791a (diff)
downloadsoikk-DB-28578b192d0828a9820983b5624b9bcc3577cd18.tar.xz
soikk-DB-28578b192d0828a9820983b5624b9bcc3577cd18.tar.zst
Improved the database storage system. Added persistency.
Diffstat (limited to 'include/db.h')
-rw-r--r--include/db.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/db.h b/include/db.h
index 3ffcafb..ccdfc11 100644
--- a/include/db.h
+++ b/include/db.h
@@ -5,17 +5,19 @@
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
-#include <stdint.h>
+#include <inttypes.h>
#include <stdbool.h>
+#include <stdarg.h>
#include "strnatcmp.h"
+#include "crc64.h"
#include "repl.h"
#include "parser.h"
#include "storage.h"
+#include "database.h"
#include "str.h"
#include "bm.h"
-
-#endif \ No newline at end of file
+#endif