mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-30 11:00:02 +00:00
tester for linkers
This commit is contained in:
committed by
Ryan Fleury
parent
19a7ada1dc
commit
b9768be4ed
@@ -1197,6 +1197,16 @@ str8_array_from_list(Arena *arena, String8List *list)
|
||||
return array;
|
||||
}
|
||||
|
||||
internal String8Array *
|
||||
str8_array_from_list_arr(Arena *arena, String8List **lists, U64 count)
|
||||
{
|
||||
String8Array *result = push_array(arena, String8Array, count);
|
||||
for (U64 idx = 0; idx < count; idx += 1) {
|
||||
result[idx] = str8_array_from_list(arena, lists[idx]);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
internal String8Array
|
||||
str8_array_reserve(Arena *arena, U64 count)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user