From 4e77bc7164070d7ffafdee1ba6ce3bb1aaf10746 Mon Sep 17 00:00:00 2001 From: nasr Date: Mon, 2 Mar 2026 22:44:17 +0000 Subject: feature(main): loading file + bug fixes structure improvement --- source/repl/repl.c | 16 ++++++++++++++++ source/repl/repl.h | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 source/repl/repl.c create mode 100644 source/repl/repl.h (limited to 'source/repl') diff --git a/source/repl/repl.c b/source/repl/repl.c new file mode 100644 index 0000000..4c57345 --- /dev/null +++ b/source/repl/repl.c @@ -0,0 +1,16 @@ +#ifndef ENGINE_REPL_H +#define ENGINE_REPL_H + +typedef struct node node; +struct node +{ + +}; + +typedef struct btree btree; +struct btree +{ + +}; + +#endif /* ENGINE_H */ diff --git a/source/repl/repl.h b/source/repl/repl.h new file mode 100644 index 0000000..4c57345 --- /dev/null +++ b/source/repl/repl.h @@ -0,0 +1,16 @@ +#ifndef ENGINE_REPL_H +#define ENGINE_REPL_H + +typedef struct node node; +struct node +{ + +}; + +typedef struct btree btree; +struct btree +{ + +}; + +#endif /* ENGINE_H */ -- cgit v1.3