wizapp-stdlib/codegen/dbl_list/snippets/list_empty

9 lines
143 B
Plaintext

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