wizapp-stdlib/codegen/dbl_list/snippets/list_empty
2025-04-16 08:06:05 +01:00

9 lines
142 B
Plaintext

if (!list) {{
return;
}}
u64 count = list->node_count;
for (u64 i = 0; i < count; ++i) {{
wapp_{T}_list_pop_back(list);
}}