blob: 9a146c081c0cf9f765b4d4b7125b9e0c8fae388e [file]
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
///
/// \file
/// Implementation header for towupper.
///
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_WCTYPE_TOWUPPER_H
#define LLVM_LIBC_SRC_WCTYPE_TOWUPPER_H
#include "hdr/types/wint_t.h"
#include "src/__support/common.h"
namespace LIBC_NAMESPACE_DECL {
wint_t towupper(wint_t c);
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_WCTYPE_TOWUPPER_H