This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/euler/include/string

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);
}