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

9 lines
147 B
Plaintext

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