compat/win32/path-utils.h: add #include guards
This adds the common guards that allow headers to be #include'd multiple times. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
41616ef618
commit
5b8f9e2417
@ -1,3 +1,6 @@
|
|||||||
|
#ifndef WIN32_PATH_UTILS_H
|
||||||
|
#define WIN32_PATH_UTILS_H
|
||||||
|
|
||||||
#define has_dos_drive_prefix(path) \
|
#define has_dos_drive_prefix(path) \
|
||||||
(isalpha(*(path)) && (path)[1] == ':' ? 2 : 0)
|
(isalpha(*(path)) && (path)[1] == ':' ? 2 : 0)
|
||||||
int win32_skip_dos_drive_prefix(char **path);
|
int win32_skip_dos_drive_prefix(char **path);
|
||||||
@ -18,3 +21,5 @@ static inline char *win32_find_last_dir_sep(const char *path)
|
|||||||
#define find_last_dir_sep win32_find_last_dir_sep
|
#define find_last_dir_sep win32_find_last_dir_sep
|
||||||
int win32_offset_1st_component(const char *path);
|
int win32_offset_1st_component(const char *path);
|
||||||
#define offset_1st_component win32_offset_1st_component
|
#define offset_1st_component win32_offset_1st_component
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user