From bafcf13695f80dac6d9be87b65ad6156ddc3d621 Mon Sep 17 00:00:00 2001 From: Randy Palamar Date: Fri, 5 Dec 2025 12:41:31 -0700 Subject: delete functions which were exposed as unused --- text-common.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'text-common.c') diff --git a/text-common.c b/text-common.c index 6225dad..87dc13f 100644 --- a/text-common.c +++ b/text-common.c @@ -26,14 +26,6 @@ bool text_appendf(Text *txt, const char *format, ...) { return ret; } -bool text_printf(Text *txt, size_t pos, const char *format, ...) { - va_list ap; - va_start(ap, format); - bool ret = text_vprintf(txt, pos, format, ap); - va_end(ap); - return ret; -} - bool text_byte_get(const Text *txt, size_t pos, char *byte) { return text_bytes_get(txt, pos, 1, byte); } -- cgit v1.2.3