blob: 168860304dbca76b34b1a468dcb08976643d9e78 [file] [edit]
//===-- Implementation header for tdelete -----------------------*- 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
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_SEARCH_TDELETE_H
#define LLVM_LIBC_SRC_SEARCH_TDELETE_H
#include "hdr/types/posix_tnode.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
void *tdelete(const void *key, __llvm_libc_tnode **rootp,
int (*compar)(const void *, const void *));
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_SEARCH_TDELETE_H