1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-13 07:54:15 +00:00
reactos/sdk/lib/ucrt/stdlib/lsearch_s.cpp

15 lines
350 B
C++
Raw Normal View History

//
// 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"