Michael Jones | 16d5c24 | 2023-08-04 13:59:07 -0700 | [diff] [blame] | 1 | //===-- Implementation header of vfprintf -----------------------*- C++ -*-===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLVM_LIBC_SRC_STDIO_VFPRINTF_H |
| 10 | #define LLVM_LIBC_SRC_STDIO_VFPRINTF_H |
| 11 | |
Michael Jones | 5aed6d6 | 2024-07-11 11:09:51 -0700 | [diff] [blame] | 12 | #include "hdr/types/FILE.h" |
Petr Hosek | 5ff3ff3 | 2024-07-12 09:28:41 -0700 | [diff] [blame] | 13 | #include "src/__support/macros/config.h" |
Michael Jones | 16d5c24 | 2023-08-04 13:59:07 -0700 | [diff] [blame] | 14 | #include <stdarg.h> |
Michael Jones | 16d5c24 | 2023-08-04 13:59:07 -0700 | [diff] [blame] | 15 | |
Petr Hosek | 5ff3ff3 | 2024-07-12 09:28:41 -0700 | [diff] [blame] | 16 | namespace LIBC_NAMESPACE_DECL { |
Michael Jones | 16d5c24 | 2023-08-04 13:59:07 -0700 | [diff] [blame] | 17 | |
| 18 | int vfprintf(::FILE *__restrict stream, const char *__restrict format, |
| 19 | va_list vlist); |
| 20 | |
Petr Hosek | 5ff3ff3 | 2024-07-12 09:28:41 -0700 | [diff] [blame] | 21 | } // namespace LIBC_NAMESPACE_DECL |
Michael Jones | 16d5c24 | 2023-08-04 13:59:07 -0700 | [diff] [blame] | 22 | |
| 23 | #endif // LLVM_LIBC_SRC_STDIO_VFPRINTF_H |