From 90eed5c3684a6dd751afc2bcb7ae0ac919c143a8 Mon Sep 17 00:00:00 2001 From: quou Date: Mon, 30 Dec 2024 12:18:55 +1100 Subject: dup_string function that takes a heap --- qstd/str.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'qstd/str.c') diff --git a/qstd/str.c b/qstd/str.c index 5dd97c4..5461880 100644 --- a/qstd/str.c +++ b/qstd/str.c @@ -58,3 +58,9 @@ char* dup_string(Arena* a, const char* s) { return d; } +char* dup_stringh(struct Heap* h, const char* s) { + int size = string_len(s) + 1; + char* d = heap_alloc_aligned(h, size, 1); + string_copy(d, s); + return d; +} -- cgit v1.2.3-54-g00ecf