diff options
| author | Randy Palamar <randy@rnpnr.xyz> | 2025-12-05 12:41:31 -0700 |
|---|---|---|
| committer | Randy Palamar <randy@rnpnr.xyz> | 2025-12-16 11:28:44 -0700 |
| commit | bafcf13695f80dac6d9be87b65ad6156ddc3d621 (patch) | |
| tree | 95c9c70928fe7b90cbf1fa66013e41d3a90c3fce /text-common.c | |
| parent | 1d1d19ed30309b39fc5e43c830cabb4cdd004d07 (diff) | |
| download | vis-bafcf13695f80dac6d9be87b65ad6156ddc3d621.tar.gz vis-bafcf13695f80dac6d9be87b65ad6156ddc3d621.tar.xz | |
delete functions which were exposed as unused
Diffstat (limited to 'text-common.c')
| -rw-r--r-- | text-common.c | 8 |
1 files changed, 0 insertions, 8 deletions
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); } |
