blob: b5ea45b14a57b1edab227981881aa9fb495726ed [file]
//===-- Implementation of wctype ----------------------------------------===//
//
// 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 "hdr/types/wctype_t.h"
#include "src/__support/common.h"
#include "src/__support/wctype_impl.h"
#include "src/wctype/wctype_impl.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(wctype_t, wctype, (const char *property)) {
return internal::wctype(property);
}
} // namespace LIBC_NAMESPACE_DECL