upgrade the string join function

This commit is contained in:
Allen Webster
2021-07-03 11:24:30 -04:00
parent 0f53a4379f
commit e0399ef837
6 changed files with 50 additions and 24 deletions
+1 -1
View File
@@ -732,7 +732,7 @@ int main(int argument_count, char **arguments)
MD_String8List string_list = {0};
// NOTE(mal): Generate a random MD file
ExpandProduction(file_production_node, &string_list, test.expected_output, 0, depth_map, max_production_depth, 0);
test.input = MD_S8ListJoin(string_list, MD_S8Lit(""));
test.input = MD_S8ListJoin(string_list, 0);
Test *prev = 0;
for(Test *cur = first_test; cur; cur = cur->next)