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,8 @@
assert(list != NULL);
{NodeType} *output = NULL;
if (!list || list->node_count == 0) {{
if (list->node_count == 0) {{
goto RETURN_{Tupper}_LIST_POP_BACK;
}}