summaryrefslogtreecommitdiff
path: root/source/repl
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-03-08 21:01:43 +0000
committernasr <nsrddyn@gmail.com>2026-03-08 21:01:43 +0000
commit71ced998122c357bc62e54d9bb4e124c88acf94b (patch)
tree746fca3d71a8640478ad6b6f4429a19f4dfbbda8 /source/repl
parentf8f24f8c67fe903e267ab29bb2fbb9d334a722de (diff)
refactor(main): worked on string handling in C and other stuff
Diffstat (limited to 'source/repl')
-rw-r--r--source/repl/repl.c12
-rw-r--r--source/repl/repl.h16
2 files changed, 0 insertions, 28 deletions
diff --git a/source/repl/repl.c b/source/repl/repl.c
deleted file mode 100644
index dd289d8..0000000
--- a/source/repl/repl.c
+++ /dev/null
@@ -1,12 +0,0 @@
1internal void
2init_repl()
3{
4 for(;;)
5 {
6 print("reading user input...");
7 // TODO(nasr): design a repl system
8
9 sleep(1);
10 }
11
12}
diff --git a/source/repl/repl.h b/source/repl/repl.h
deleted file mode 100644
index 4c57345..0000000
--- a/source/repl/repl.h
+++ /dev/null
@@ -1,16 +0,0 @@
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 */