mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 13:38:19 +00:00
14 lines
285 B
C++
14 lines
285 B
C++
![]() |
//
|
||
|
// bsearch_s.cpp
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
// Defines _bsearch_s(), which performs a binary search over an array.
|
||
|
//
|
||
|
#ifdef __USE_CONTEXT
|
||
|
#error __USE_CONTEXT should be undefined
|
||
|
#endif
|
||
|
|
||
|
#define __USE_CONTEXT
|
||
|
#include "bsearch.cpp"
|