|
|
@@ -3,15 +3,15 @@ |
|
|
|
#include "../../../__mocks__/SDL_stdinc.mock.h" |
|
|
|
#include "IZ_list.h" |
|
|
|
|
|
|
|
bool NodeExists(IZ_ListNode* node, u64 _index) { |
|
|
|
IZ_ListFilterFunctionArgs(IZ_ListNode* __current_item_NodeExists) bool NodeExists(IZ_ListNode* node, u64 _index) { |
|
|
|
return *((u64*) node->value) == 42069; |
|
|
|
} |
|
|
|
|
|
|
|
bool NodeExists2(IZ_ListNode* node, u64 _index) { |
|
|
|
IZ_ListFilterFunctionArgs(IZ_ListNode* __current_item_NodeExists2) bool NodeExists2(IZ_ListNode* node, u64 _index) { |
|
|
|
return *((u64*) node->value) == 69420; |
|
|
|
} |
|
|
|
|
|
|
|
bool NodeDoesNotExist(IZ_ListNode* node, u64 _index) { |
|
|
|
IZ_ListFilterFunctionArgs(IZ_ListNode* __current_item_NodeDoesNotExist) bool NodeDoesNotExist(IZ_ListNode* node, u64 _index) { |
|
|
|
return *((u64*) node->value) == 55555; |
|
|
|
} |
|
|
|
|
|
|
|