blob: ce42b9ed499eab7eeb608afc515a976bcee3048b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <std/string.hpp>
namespace std {
int stoi(const std::string &str, size_t *pos = 0, int base = 10);
std::string to_string(int value);
std::string operator +(std::string &&lhs, std::string &&rhs);
}
|