We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53696ea commit 34ae8f1Copy full SHA for 34ae8f1
compat/win32/path-utils.h
@@ -1,3 +1,6 @@
1
+#ifndef WIN32_PATH_UTILS_H
2
+#define WIN32_PATH_UTILS_H
3
+
4
#define has_dos_drive_prefix(path) \
5
(isalpha(*(path)) && (path)[1] == ':' ? 2 : 0)
6
int win32_skip_dos_drive_prefix(char **path);
@@ -18,3 +21,5 @@ static inline char *win32_find_last_dir_sep(const char *path)
18
21
#define find_last_dir_sep win32_find_last_dir_sep
19
22
int win32_offset_1st_component(const char *path);
20
23
#define offset_1st_component win32_offset_1st_component
24
25
+#endif
0 commit comments