Swap order of prev and next

This commit is contained in:
gingerBill
2023-09-12 11:44:54 +01:00
parent 984a95b8c7
commit 53380632a1
@@ -20,7 +20,7 @@ List :: struct {
Node :: struct {
next, prev: ^Node,
prev, next: ^Node,
}
push_front :: proc(list: ^List, node: ^Node) {