Style: Rename string_createcat_cc to string_concat_cc

This commit is contained in:
0x221E
2026-01-18 10:23:22 +01:00
parent 1b889b7625
commit fbb1868d82
4 changed files with 11 additions and 12 deletions

View File

@@ -26,6 +26,6 @@ StringPool string_pool_create(Arena* a);
StringView string_create(StringPool* sp, const char* s, size_t len);
// Ensure that lengths do not contain null term
StringView string_createcat_ss(StringPool* sp, StringView* a, StringView* b);
StringView string_concat_ss(StringPool* sp, StringView* a, StringView* b);
#endif