xref: /llvm-project/libc/src/stdio/fprintf.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
1ba7e1cddSMichael Jones //===-- Implementation header of fprintf ------------------------*- C++ -*-===//
2ba7e1cddSMichael Jones //
3ba7e1cddSMichael Jones // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4ba7e1cddSMichael Jones // See https://llvm.org/LICENSE.txt for license information.
5ba7e1cddSMichael Jones // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6ba7e1cddSMichael Jones //
7ba7e1cddSMichael Jones //===----------------------------------------------------------------------===//
8ba7e1cddSMichael Jones 
9ba7e1cddSMichael Jones #ifndef LLVM_LIBC_SRC_STDIO_FPRINTF_H
10ba7e1cddSMichael Jones #define LLVM_LIBC_SRC_STDIO_FPRINTF_H
11ba7e1cddSMichael Jones 
125aed6d67SMichael Jones #include "hdr/types/FILE.h"
13*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
14ba7e1cddSMichael Jones 
15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
16ba7e1cddSMichael Jones 
17ba7e1cddSMichael Jones int fprintf(::FILE *__restrict stream, const char *__restrict format, ...);
18ba7e1cddSMichael Jones 
19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
20ba7e1cddSMichael Jones 
21ba7e1cddSMichael Jones #endif // LLVM_LIBC_SRC_STDIO_FPRINTF_H
22