YYCCommonplace/src/ParserHelper.hpp

11 lines
203 B
C++
Raw Normal View History

2024-04-26 15:37:28 +08:00
#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);
}