136991d83SMichael Jones //===-- Implementation header of scanf --------------------------*- C++ -*-===// 236991d83SMichael Jones // 336991d83SMichael Jones // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 436991d83SMichael Jones // See https://llvm.org/LICENSE.txt for license information. 536991d83SMichael Jones // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 636991d83SMichael Jones // 736991d83SMichael Jones //===----------------------------------------------------------------------===// 836991d83SMichael Jones 936991d83SMichael Jones #ifndef LLVM_LIBC_SRC_STDIO_SCANF_H 1036991d83SMichael Jones #define LLVM_LIBC_SRC_STDIO_SCANF_H 1136991d83SMichael Jones 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 13*5ff3ff33SPetr Hosek 14*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 1536991d83SMichael Jones 1636991d83SMichael Jones int scanf(const char *__restrict format, ...); 1736991d83SMichael Jones 18*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 1936991d83SMichael Jones 2036991d83SMichael Jones #endif // LLVM_LIBC_SRC_STDIO_SCANF_H 21