aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-03-18 19:57:54 +0000
committerRon Yorston <rmy@pobox.com>2018-03-18 19:57:54 +0000
commit411d8b4cf9887c108853a25388837c1aaf31edce (patch)
treebd88371b4720d19fe08209a800c8576d46fa44fd /include
parent2cbc61ac77a4e661ad97143c3f53db55506d8349 (diff)
downloadbusybox-w32-411d8b4cf9887c108853a25388837c1aaf31edce.tar.gz
busybox-w32-411d8b4cf9887c108853a25388837c1aaf31edce.tar.bz2
busybox-w32-411d8b4cf9887c108853a25388837c1aaf31edce.zip
win32: add a function to convert backslashes to slashes
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/mingw.h b/include/mingw.h
index 386540b37..a54a6ac85 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -442,8 +442,6 @@ const char * next_path_sep(const char *path);
442 * helpers 442 * helpers
443 */ 443 */
444 444
445char **env_setenv(char **env, const char *name);
446
447const char *get_busybox_exec_path(void); 445const char *get_busybox_exec_path(void);
448void init_winsock(void); 446void init_winsock(void);
449 447
@@ -451,6 +449,7 @@ int has_bat_suffix(const char *p);
451int has_exe_suffix(const char *p); 449int has_exe_suffix(const char *p);
452int has_exe_suffix_or_dot(const char *name); 450int has_exe_suffix_or_dot(const char *name);
453char *add_win32_extension(const char *p); 451char *add_win32_extension(const char *p);
452void FAST_FUNC convert_slashes(char *p);
454 453
455int err_win_to_posix(DWORD winerr); 454int err_win_to_posix(DWORD winerr);
456 455