Style: Rename string_createcat_cc to string_concat_cc
This commit is contained in:
@@ -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!");
|
||||
|
||||
Reference in New Issue
Block a user