Use asserts in dbl_list

This commit is contained in:
2025-05-05 19:55:42 +01:00
parent 175f627f93
commit cac66b9dbb
12 changed files with 288 additions and 430 deletions

View File

@@ -1,6 +1,4 @@
if (!list || !node || !(node->item)) {{
return;
}}
assert(list != NULL && node != NULL && (node->item) != NULL);
if (index == 0) {{
wapp_{Tlower}_list_push_front(list, node);