ref: - https://man7.org/linux/man-pages/man3/lsearch.3.html - https://pubs.opengroup.org/onlinepubs/009696699/functions/lsearch.html
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
//===-- Implementation of lfind ---------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "src/search/lfind.h"
|
|
#include "src/__support/CPP/cstddef.h" // cpp::byte
|
|
#include "src/__support/common.h"
|
|
#include "src/__support/macros/config.h"
|
|
#include "src/__support/memory_size.h"
|
|
|
|
namespace LIBC_NAMESPACE_DECL {
|
|
LLVM_LIBC_FUNCTION(void *, lfind,
|
|
(const void *key, const void *base, size_t *nmemb,
|
|
size_t size, int (*compar)(const void *, const void *))) {
|
|
if (key == nullptr || base == nullptr || nmemb == nullptr ||
|
|
compar == nullptr)
|
|
return nullptr;
|
|
|
|
size_t byte_len = 0;
|
|
if (internal::mul_overflow(*nmemb, size, &byte_len))
|
|
return nullptr;
|
|
|
|
const cpp::byte *next = reinterpret_cast<const cpp::byte *>(base);
|
|
const cpp::byte *end = next + byte_len;
|
|
for (; next < end; next += size)
|
|
if (compar(key, next) == 0)
|
|
return const_cast<cpp::byte *>(next);
|
|
return nullptr;
|
|
}
|
|
|
|
} // namespace LIBC_NAMESPACE_DECL
|