This commit is contained in:
2025-12-12 22:19:44 +00:00
parent 06c7b7dfaa
commit e6ce95a1d4
6 changed files with 484 additions and 465 deletions

13
include/main.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef MAIN_H
#define MAIN_H
#include <atomic>
#include <vector>
#define NORMAL 0
#define INSERT 1
#define SELECT 2
extern std::atomic<bool> running;
#endif