aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2019-02-14 15:07:36 +0000
committerRon Yorston <rmy@pobox.com>2019-02-14 15:07:36 +0000
commitee7e00dc580c4e8075ab0776aeb3526c2c22f2b6 (patch)
treeb934dcdb7b9d27767c5336ad287408242c426b2f /include
parent6312c005522de47dcaf442f613065415bcbd8ef7 (diff)
downloadbusybox-w32-ee7e00dc580c4e8075ab0776aeb3526c2c22f2b6.tar.gz
busybox-w32-ee7e00dc580c4e8075ab0776aeb3526c2c22f2b6.tar.bz2
busybox-w32-ee7e00dc580c4e8075ab0776aeb3526c2c22f2b6.zip
win32: add a function to remove CRs from a text buffer
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h
index 4655fe511..185eb66ed 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -500,7 +500,8 @@ static inline char *auto_win32_extension(const char *p)
500 return s ? auto_string(s) : NULL; 500 return s ? auto_string(s) : NULL;
501} 501}
502 502
503void FAST_FUNC convert_slashes(char *p); 503void convert_slashes(char *p) FAST_FUNC;
504size_t remove_cr(char *p, size_t len) FAST_FUNC;
504 505
505int err_win_to_posix(DWORD winerr); 506int err_win_to_posix(DWORD winerr);
506 507