| 52 | list->Values[list->Count++] = value; |
| 53 | } |
| 54 | BOOL IntegerListContains(PINTEGER_LIST list, INT value) |
| 55 | { |
| 56 | for (DWORD i = 0; i < list->Count; i++) |
| 57 | { |
| 58 | if (list->Values[i] == value) return TRUE; |
| 59 | } |
| 60 | |
| 61 | return FALSE; |
| 62 | } |
| 63 | BOOL CompareIntegerList(PINTEGER_LIST listA, PINTEGER_LIST listB) |
| 64 | { |
| 65 | if (listA == listB) |
no outgoing calls
no test coverage detected