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

@@ -25,7 +25,7 @@ StringView string_create(StringPool* sp, const char* s, size_t len)
return (StringView){.buf = buf, .len=len};
}
StringView string_createcat_ss(StringPool* sp, StringView* a, StringView* b)
StringView string_concat_ss(StringPool* sp, StringView* a, StringView* b)
{
if(a == NULL) DIE("a must be a valid C-style string!");
if(b == NULL) DIE("b must be a valid C-style string!");