From 4f3a56dc12a2126bdacff73f1cfe586d06e800c0 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 1 Aug 2025 01:02:43 +0200 Subject: 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 --- include/libbb.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') 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; /* Reverse */ char* hex2bin(char *dst, const char *src, int count) FAST_FUNC; +extern const char c_escape_conv_str00[]; +#define c_escape_conv_str07 (c_escape_conv_str00+3) + void FAST_FUNC xorbuf_3(void *dst, const void *src1, const void *src2, unsigned count); void FAST_FUNC xorbuf(void* buf, const void* mask, unsigned count); void FAST_FUNC xorbuf16_aligned_long(void* buf, const void* mask); -- cgit v1.2.3-55-g6feb