aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2026-02-06 22:56:16 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2026-02-06 22:56:16 +0100
commit3620c4ee677224aed6d6fa02aa8d034b4495370e (patch)
tree1fc2c0547995549ba2598a4c2d7f78079562b9b2 /include
parent80ce9e3998dc07d8c4653daa7265df09145b9c13 (diff)
downloadbusybox-w32-3620c4ee677224aed6d6fa02aa8d034b4495370e.tar.gz
busybox-w32-3620c4ee677224aed6d6fa02aa8d034b4495370e.tar.bz2
busybox-w32-3620c4ee677224aed6d6fa02aa8d034b4495370e.zip
vi: fix "s /find/repl" with whitespace before /
function old new delta colon 3977 4005 +28 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 6ce01ea94..baf0f29e5 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -939,6 +939,8 @@ int parse_pasv_epsv(char *buf) FAST_FUNC;
939/* 0 if argv[0] is NULL: */ 939/* 0 if argv[0] is NULL: */
940unsigned string_array_len(char **argv) FAST_FUNC; 940unsigned string_array_len(char **argv) FAST_FUNC;
941void overlapping_strcpy(char *dst, const char *src) FAST_FUNC; 941void overlapping_strcpy(char *dst, const char *src) FAST_FUNC;
942/* Like strncpy but make sure the resulting string is always 0 terminated: */
943/* writes SIZE chars, the [SIZE-1] char is always NUL (unless SIZE==0). */
942char *safe_strncpy(char *dst, const char *src, size_t size) FAST_FUNC; 944char *safe_strncpy(char *dst, const char *src, size_t size) FAST_FUNC;
943char *strncpy_IFNAMSIZ(char *dst, const char *src) FAST_FUNC; 945char *strncpy_IFNAMSIZ(char *dst, const char *src) FAST_FUNC;
944unsigned count_strstr(const char *str, const char *sub) FAST_FUNC; 946unsigned count_strstr(const char *str, const char *sub) FAST_FUNC;