1 //===-- string_utils.h ------------------------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef SCUDO_STRING_UTILS_H_
10 #define SCUDO_STRING_UTILS_H_
12 #include "internal_defs.h"
21 explicit ScopedString() { String
.push_back('\0'); }
22 uptr
length() { return String
.size() - 1; }
23 const char *data() { return String
.data(); }
26 String
.push_back('\0');
28 void vappend(const char *Format
, va_list Args
);
29 void append(const char *Format
, ...) FORMAT(2, 3);
30 void output() const { outputRaw(String
.data()); }
31 void reserve(size_t Size
) { String
.reserve(Size
+ 1); }
37 int formatString(char *Buffer
, uptr BufferLength
, const char *Format
, ...)
39 void Printf(const char *Format
, ...) FORMAT(1, 2);
43 #endif // SCUDO_STRING_UTILS_H_