From 8d173710fe8cfd96bd54f9dd1cf0eccacfdd6e73 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 3 Apr 2025 15:19:59 -0400 Subject: Deprecate heap_strf --- src/stdlib/util.c | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/stdlib/util.c (limited to 'src/stdlib/util.c') diff --git a/src/stdlib/util.c b/src/stdlib/util.c deleted file mode 100644 index 1fe33dfa..00000000 --- a/src/stdlib/util.c +++ /dev/null @@ -1,26 +0,0 @@ -// Built-in utility functions -#include -#include -#include -#include -#include -#include - -#include "text.h" -#include "util.h" - -__attribute__((format(printf, 1, 2))) -public char *heap_strf(const char *fmt, ...) -{ - va_list args; - va_start(args, fmt); - char *tmp = NULL; - int len = vasprintf(&tmp, fmt, args); - if (len < 0) return NULL; - va_end(args); - char *ret = GC_strndup(tmp, (size_t)len); - free(tmp); - return ret; -} - -// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 -- cgit v1.2.3