summaryrefslogtreecommitdiff
path: root/include/lldb/Utility/VASPrintf.h
blob: 6e2404ecef93b1517c652bbb920af1b64fcca4e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//===-- VASPrintf.h ---------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef LLDB_UTILITY_VASPRINTF_H
#define LLDB_UTILITY_VASPRINTF_H

#include "llvm/ADT/SmallVector.h"

#include <cstdarg>

namespace lldb_private {
bool VASprintf(llvm::SmallVectorImpl<char> &buf, const char *fmt, va_list args);
}

#endif // #ifdef LLDB_UTILITY_VASPRINTF_H