summaryrefslogtreecommitdiffstats
path: root/02_exercise/prompt_utils.h
blob: 908019c241649d4360975751ab16a8d4b80b5115 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef PROMPT_UTILS_H_INCLUDED
#define PROMPT_UTILS_H_INCLUDED

#include <stddef.h>

// Returns the relative path to get from the `from_dir` to the `to_dir`
char const *const relative_path(char const *const from_dir, char const *const to_dir);

// Returns the position of each occurence of the seperator
size_t *get_seperator_indeces(char const *const text, char seperator);
#endif // PROMPT_UTILS_H_INCLUDED