diff options
| author | Soikk | 2022-05-05 18:45:45 +0200 |
|---|---|---|
| committer | Soikk | 2022-05-05 18:45:45 +0200 |
| commit | 39c0dfbc9c4279e519841afae5c7413b1bdf56d8 (patch) | |
| tree | 8fbe479baf22778911b75ec3d06f05de584b6bce /include/db.h | |
| parent | 6afe3cc8ec6c009a43950bdbe138cbc2d7a88a4d (diff) | |
| download | soikk-DB-39c0dfbc9c4279e519841afae5c7413b1bdf56d8.tar.xz soikk-DB-39c0dfbc9c4279e519841afae5c7413b1bdf56d8.tar.zst | |
More quality of life changes
Diffstat (limited to 'include/db.h')
| -rw-r--r-- | include/db.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/db.h b/include/db.h new file mode 100644 index 0000000..a5fca10 --- /dev/null +++ b/include/db.h @@ -0,0 +1,20 @@ +#ifndef DB_H +#define DB_H + +#include <stdio.h> +#include <ctype.h> +#include <stdlib.h> +#include <string.h> +#include <stdint.h> +#include <stdbool.h> + + +#include "strnatcmp.h" + +#include "repl.h" +#include "parser.h" +#include "storage.h" +#include "str.h" + + +#endif
\ No newline at end of file |
