aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2025-08-01 01:02:43 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2025-08-01 01:02:43 +0200
commit4f3a56dc12a2126bdacff73f1cfe586d06e800c0 (patch)
tree863d23f2fc3d2bf6b77213ef729a6ebda7101244 /include/libbb.h
parentbb18473216253b8602ce081dd944f854aad9e572 (diff)
downloadbusybox-w32-4f3a56dc12a2126bdacff73f1cfe586d06e800c0.tar.gz
busybox-w32-4f3a56dc12a2126bdacff73f1cfe586d06e800c0.tar.bz2
busybox-w32-4f3a56dc12a2126bdacff73f1cfe586d06e800c0.zip
ls: fix -Q to match GNU
function old new delta print_name 137 229 +92 display_files 375 402 +27 c_escape_conv_str00 - 24 +24 display 1476 1485 +9 conv_str 33 - -33 ------------------------------------------------------------------------------ (add/remove: 2/1 grow/shrink: 3/0 up/down: 152/-33) Total: 119 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 7105bd479..cdc05049c 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1113,6 +1113,9 @@ char *bin2hex(char *dst, const char *src, int count) FAST_FUNC;
1113/* Reverse */ 1113/* Reverse */
1114char* hex2bin(char *dst, const char *src, int count) FAST_FUNC; 1114char* hex2bin(char *dst, const char *src, int count) FAST_FUNC;
1115 1115
1116extern const char c_escape_conv_str00[];
1117#define c_escape_conv_str07 (c_escape_conv_str00+3)
1118
1116void FAST_FUNC xorbuf_3(void *dst, const void *src1, const void *src2, unsigned count); 1119void FAST_FUNC xorbuf_3(void *dst, const void *src1, const void *src2, unsigned count);
1117void FAST_FUNC xorbuf(void* buf, const void* mask, unsigned count); 1120void FAST_FUNC xorbuf(void* buf, const void* mask, unsigned count);
1118void FAST_FUNC xorbuf16_aligned_long(void* buf, const void* mask); 1121void FAST_FUNC xorbuf16_aligned_long(void* buf, const void* mask);