summaryrefslogtreecommitdiffstats
path: root/02_exercise/prompt_utils_test.c
diff options
context:
space:
mode:
Diffstat (limited to '02_exercise/prompt_utils_test.c')
-rw-r--r--02_exercise/prompt_utils_test.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/02_exercise/prompt_utils_test.c b/02_exercise/prompt_utils_test.c
index f648275..3819021 100644
--- a/02_exercise/prompt_utils_test.c
+++ b/02_exercise/prompt_utils_test.c
@@ -34,4 +34,10 @@ void test_relative_path() {
test_paths("/", "/Test/a/asd", "./Test/a/asd");
test_paths("/Test/c", "/Test/b", "../b");
test_paths("/B/C", "/", "../..");
-} \ No newline at end of file
+}
+
+int main(void) {
+ test_relative_path();
+ test_get_seperator_indeces();
+ return 0;
+}