diff options
author | Ron Yorston <rmy@pobox.com> | 2019-02-14 15:07:36 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2019-02-14 15:07:36 +0000 |
commit | ee7e00dc580c4e8075ab0776aeb3526c2c22f2b6 (patch) | |
tree | b934dcdb7b9d27767c5336ad287408242c426b2f /include | |
parent | 6312c005522de47dcaf442f613065415bcbd8ef7 (diff) | |
download | busybox-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.h | 3 |
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 | ||
503 | void FAST_FUNC convert_slashes(char *p); | 503 | void convert_slashes(char *p) FAST_FUNC; |
504 | size_t remove_cr(char *p, size_t len) FAST_FUNC; | ||
504 | 505 | ||
505 | int err_win_to_posix(DWORD winerr); | 506 | int err_win_to_posix(DWORD winerr); |
506 | 507 | ||