mini-llvm 0.1.0
Loading...
Searching...
No Matches
Strings.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
2
3#pragma once
4
5#include <string>
6
8
9namespace mini_llvm {
10
11MINI_LLVM_EXPORT std::string toString(int value, int base = 10);
12MINI_LLVM_EXPORT std::string toString(long value, int base = 10);
13MINI_LLVM_EXPORT std::string toString(long long value, int base = 10);
14MINI_LLVM_EXPORT std::string toString(unsigned int value, int base = 10);
15MINI_LLVM_EXPORT std::string toString(unsigned long value, int base = 10);
16MINI_LLVM_EXPORT std::string toString(unsigned long long value, int base = 10);
17
19
20} // namespace mini_llvm
#define MINI_LLVM_EXPORT
Definition Compiler.h:17
Definition GraphColoringAllocator.h:13
MINI_LLVM_EXPORT void normalizeLineEndings(std::string &str)
MINI_LLVM_EXPORT std::string toString(int value, int base=10)