blob: 91418c69e84df62b4cb5b3a84425e4896b1bc8e1 [file] [log] [blame]
Michael Jones16d5c242023-08-04 13:59:07 -07001//===-- 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 Jones5aed6d62024-07-11 11:09:51 -070012#include "hdr/types/FILE.h"
Petr Hosek5ff3ff32024-07-12 09:28:41 -070013#include "src/__support/macros/config.h"
Michael Jones16d5c242023-08-04 13:59:07 -070014#include <stdarg.h>
Michael Jones16d5c242023-08-04 13:59:07 -070015
Petr Hosek5ff3ff32024-07-12 09:28:41 -070016namespace LIBC_NAMESPACE_DECL {
Michael Jones16d5c242023-08-04 13:59:07 -070017
18int vfprintf(::FILE *__restrict stream, const char *__restrict format,
19 va_list vlist);
20
Petr Hosek5ff3ff32024-07-12 09:28:41 -070021} // namespace LIBC_NAMESPACE_DECL
Michael Jones16d5c242023-08-04 13:59:07 -070022
23#endif // LLVM_LIBC_SRC_STDIO_VFPRINTF_H