#ifndef PROMPT_UTILS_H_INCLUDED #define PROMPT_UTILS_H_INCLUDED #include // 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 occurence of the seperator size_t *get_seperator_indeces(char const *text, char seperator); #endif // PROMPT_UTILS_H_INCLUDED