summaryrefslogtreecommitdiffstats
path: root/shell/prompt_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'shell/prompt_utils.h')
-rw-r--r--shell/prompt_utils.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/shell/prompt_utils.h b/shell/prompt_utils.h
new file mode 100644
index 0000000..36d065d
--- /dev/null
+++ b/shell/prompt_utils.h
@@ -0,0 +1,10 @@
+#ifndef PROMPT_UTILS_H_INCLUDED
+#define PROMPT_UTILS_H_INCLUDED
+
+// returns the relative path to get from the `from_dir` to the `to_dir`
+char const *relative_path(char const *from_dir, char const *to_dir);
+
+// returns the position of each occurrence of the separator
+size_t *get_separator_indices(char const *text, char separator);
+
+#endif // PROMPT_UTILS_H_INCLUDED