summaryrefslogtreecommitdiff
path: root/qstd/str.c
diff options
context:
space:
mode:
Diffstat (limited to 'qstd/str.c')
-rw-r--r--qstd/str.c6
1 files changed, 6 insertions, 0 deletions
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;
+}