diff options
Diffstat (limited to 'src/std/str.h')
-rw-r--r-- | src/std/str.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/std/str.h b/src/std/str.h index c25c615..a29bf9a 100644 --- a/src/std/str.h +++ b/src/std/str.h @@ -45,6 +45,8 @@ char* Str8_to_cstr(arena* a, Str8 s); @note The backing `string` cannot be modified. */ Str8 Str8_cstr_view(char* string); +char* Clone_cstr(arena* a, const char* s); + // --- Comparisons /** @brief Compare two strings for exact equality */ |