mirror of
https://github.com/reactos/reactos.git
synced 2025-05-22 18:45:00 +00:00

Imported from https://www.nuget.org/packages/Microsoft.Windows.SDK.CRTSource/10.0.22621.3 License: MIT
14 lines
350 B
C++
14 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"
|