blob: 8f1028e5d8d325b599c5384e1ec93e11fd7e0384 [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 of towlower.
///
//===----------------------------------------------------------------------===//
#include "src/wctype/towlower.h"
#include "hdr/types/wint_t.h"
#include "src/__support/common.h"
#include "src/__support/wctype_utils.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(wint_t, towlower, (wint_t c)) {
if (c == static_cast<wint_t>(static_cast<wchar_t>(c)))
return static_cast<wint_t>(internal::tolower(static_cast<wchar_t>(c)));
return c;
}
} // namespace LIBC_NAMESPACE_DECL