146b50872SMichael Jones //===-- Implementation header for btowc -------------------------*- C++ -*-===// 246b50872SMichael Jones // 346b50872SMichael Jones // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 446b50872SMichael Jones // See https://llvm.org/LICENSE.txt for license information. 546b50872SMichael Jones // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 646b50872SMichael Jones // 746b50872SMichael Jones //===----------------------------------------------------------------------===// 846b50872SMichael Jones 946b50872SMichael Jones #ifndef LLVM_LIBC_SRC_WCHAR_BTOWC_H 1046b50872SMichael Jones #define LLVM_LIBC_SRC_WCHAR_BTOWC_H 1146b50872SMichael Jones 12*95d4c97aSlntue #include "hdr/types/wint_t.h" 135ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 1446b50872SMichael Jones 155ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 1646b50872SMichael Jones 1746b50872SMichael Jones wint_t btowc(int c); 1846b50872SMichael Jones 195ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 2046b50872SMichael Jones 2146b50872SMichael Jones #endif // LLVM_LIBC_SRC_WCHAR_BTOWC_H 22