summaryrefslogtreecommitdiff
path: root/source/repl
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-03-02 22:44:17 +0000
committernasr <nsrddyn@gmail.com>2026-03-02 22:44:17 +0000
commit4e77bc7164070d7ffafdee1ba6ce3bb1aaf10746 (patch)
treee878f009730e934dfe5e295d4b24dfd906f0eb73 /source/repl
parent56ebfa3f4b0d7a80090b344b294252d2be152bb0 (diff)
feature(main): loading file + bug fixes
structure improvement
Diffstat (limited to 'source/repl')
-rw-r--r--source/repl/repl.c16
-rw-r--r--source/repl/repl.h16
2 files changed, 32 insertions, 0 deletions
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 @@
1#ifndef ENGINE_REPL_H
2#define ENGINE_REPL_H
3
4typedef struct node node;
5struct node
6{
7
8};
9
10typedef struct btree btree;
11struct btree
12{
13
14};
15
16#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 @@
1#ifndef ENGINE_REPL_H
2#define ENGINE_REPL_H
3
4typedef struct node node;
5struct node
6{
7
8};
9
10typedef struct btree btree;
11struct btree
12{
13
14};
15
16#endif /* ENGINE_H */