mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 14:08:22 +00:00
15 lines
350 B
C++
15 lines
350 B
C++
![]() |
//
|
||
|
// lsearch_s.cpp
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
// Defines _lsearch_s(), which performs a linear search over an array, appending
|
||
|
// the key to the end of the array if it is not found.
|
||
|
//
|
||
|
#ifdef __USE_CONTEXT
|
||
|
#error __USE_CONTEXT should be undefined
|
||
|
#endif
|
||
|
|
||
|
#define __USE_CONTEXT
|
||
|
#include "lsearch.cpp"
|