13 lines
231 B
Text
13 lines
231 B
Text
#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);
|
|
|
|
}
|