116d5c242SMichael Jones //===-- Implementation header of vsprintf -----------------------*- C++ -*-===// 216d5c242SMichael Jones // 316d5c242SMichael Jones // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 416d5c242SMichael Jones // See https://llvm.org/LICENSE.txt for license information. 516d5c242SMichael Jones // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 616d5c242SMichael Jones // 716d5c242SMichael Jones //===----------------------------------------------------------------------===// 816d5c242SMichael Jones 916d5c242SMichael Jones #ifndef LLVM_LIBC_SRC_STDIO_VSPRINTF_H 1016d5c242SMichael Jones #define LLVM_LIBC_SRC_STDIO_VSPRINTF_H 1116d5c242SMichael Jones 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 1316d5c242SMichael Jones #include <stdarg.h> 1416d5c242SMichael Jones 15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 1616d5c242SMichael Jones 1716d5c242SMichael Jones int vsprintf(char *__restrict buffer, const char *__restrict format, 1816d5c242SMichael Jones va_list vlist); 1916d5c242SMichael Jones 20*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 2116d5c242SMichael Jones 2216d5c242SMichael Jones #endif // LLVM_LIBC_SRC_STDIO_VSPRINTF_H 23