Merge branch 'am/update-pathspec-f-f-tests'
[alt-git.git] / compat / win32 / path-utils.h
blobf2e70872cd20675dd2f84f72e7608799f16941ad
1 #ifndef WIN32_PATH_UTILS_H
2 #define WIN32_PATH_UTILS_H
4 int win32_has_dos_drive_prefix(const char *path);
5 #define has_dos_drive_prefix win32_has_dos_drive_prefix
7 int win32_skip_dos_drive_prefix(char **path);
8 #define skip_dos_drive_prefix win32_skip_dos_drive_prefix
9 static inline int win32_is_dir_sep(int c)
11 return c == '/' || c == '\\';
13 #define is_dir_sep win32_is_dir_sep
14 static inline char *win32_find_last_dir_sep(const char *path)
16 char *ret = NULL;
17 for (; *path; ++path)
18 if (is_dir_sep(*path))
19 ret = (char *)path;
20 return ret;
22 #define find_last_dir_sep win32_find_last_dir_sep
23 int win32_offset_1st_component(const char *path);
24 #define offset_1st_component win32_offset_1st_component
26 #endif