Branch :
#ifndef UTILS_PATHS_H
#define UTILS_PATHS_H
#include <stdbool.h>
#ifdef _WIN32
#define PATH_SEPARATOR '\\'
#define ALT_PATH_SEPARATOR '/'
#define is_path_separator(s) \
((s) == PATH_SEPARATOR || (s) == ALT_PATH_SEPARATOR)
#else
#define PATH_SEPARATOR '/'
#define is_path_separator(s) ((s) == PATH_SEPARATOR)
#endif
bool
is_absolute(const char *path);
#endif