HyperDbg Debugger
Loading...
Searching...
No Matches
BinarySearch.h
Go to the documentation of this file.
1
12#pragma once
13
15// Functions //
17
18VOID
19BinarySearchPrintArray(UINT64 ArrayPtr[], UINT32 NumberOfItems);
20
22BinarySearchPerformSearchItem(UINT64 ArrayPtr[], UINT32 NumberOfItems, UINT32 * ResultIndex, UINT64 Key);
VOID BinarySearchPrintArray(UINT64 ArrayPtr[], UINT32 NumberOfItems)
A utility function to print an array of size NumberOfItems.
Definition BinarySearch.c:23
BOOLEAN BinarySearchPerformSearchItem(UINT64 ArrayPtr[], UINT32 NumberOfItems, UINT32 *ResultIndex, UINT64 Key)
A utility function to perform the binary search.
Definition BinarySearch.c:46
UCHAR BOOLEAN
Definition BasicTypes.h:35
unsigned int UINT32
Definition BasicTypes.h:54