mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2025-01-22 19:03:46 +05:00
11 lines
201 B
C++
11 lines
201 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
namespace ParseUtils
|
|
{
|
|
std::optional<int32_t> TryParseInt(const wchar_t* str);
|
|
std::string ParseString(const wchar_t* str);
|
|
};
|