Update dbl_list codegen

This commit is contained in:
2025-04-19 20:54:04 +01:00
parent add2ba541d
commit 8dbdfa2094
10 changed files with 83 additions and 28 deletions

View File

@@ -2,8 +2,8 @@
return NULL;
}}
{Ttitle}Node *output = NULL;
{Ttitle}Node *current = list->first;
{NodeType} *output = NULL;
{NodeType} *current = list->first;
for (u64 i = 1; i <= index; ++i) {{
current = current->next;
}}