YYCCommonplace/src/ParserHelper.hpp
yyc12345 b8a56efd7c feat: finish string helper.
- finish Split() in string helper.
- make complement to testbench test code.
2024-05-22 13:42:43 +08:00

11 lines
203 B
C++

#pragma once
#include <string>
#include <cinttypes>
namespace YYCC::ParserHelper {
bool Parse(const std::string& strl, int& ret, int base = 10);
int Parse(const std::string& strl, int base = 10);
}