]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Utility/VASPrintf.h
MFV r336958: 9337 zfs get all is slow due to uncached metadata
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / Utility / VASPrintf.h
1 //===-- VASPrintf.h ---------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLDB_UTILITY_VASPRINTF_H
11 #define LLDB_UTILITY_VASPRINTF_H
12
13 #include "llvm/ADT/SmallVector.h"
14
15 #include <cstdarg>
16
17 namespace lldb_private {
18 bool VASprintf(llvm::SmallVectorImpl<char> &buf, const char *fmt, va_list args);
19 }
20
21 #endif // #ifdef LLDB_UTILITY_VASPRINTF_H