diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-10 18:00:36 +1000 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-10 19:28:22 +1000 |
commit | c9158195f6bf0a73bdd5d057d8db7f182397f17c (patch) | |
tree | 45553390d4b6e94636473354165397b01b20a393 /include | |
parent | 5161fa8edd5a84f5b02898f13f343254c68eca23 (diff) | |
download | busybox-w32-c9158195f6bf0a73bdd5d057d8db7f182397f17c.tar.gz busybox-w32-c9158195f6bf0a73bdd5d057d8db7f182397f17c.tar.bz2 busybox-w32-c9158195f6bf0a73bdd5d057d8db7f182397f17c.zip |
win32: add next_path_sep()
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/mingw.h b/include/mingw.h index f9773a9a2..57fa6177d 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -309,6 +309,10 @@ pid_t mingw_spawn_1(int mode, const char *cmd, const char *const *argv, const ch | |||
309 | #define execve mingw_execve | 309 | #define execve mingw_execve |
310 | #define execv mingw_execv | 310 | #define execv mingw_execv |
311 | 311 | ||
312 | const char * next_path_sep(const char *path); | ||
313 | #define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':') | ||
314 | #define is_absolute_path(path) ((path)[0] == '/' || has_dos_drive_prefix(path)) | ||
315 | |||
312 | /* | 316 | /* |
313 | * helpers | 317 | * helpers |
314 | */ | 318 | */ |