mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-11 07:18:11 -05:00
Support localize entries that have a name that cannot be represented as an identifier
This commit is contained in:
@ -3,6 +3,10 @@
|
||||
|
||||
namespace utils
|
||||
{
|
||||
#define M_LETTERS_AL_NUM "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
|
||||
static constexpr const char* LETTERS_AL_NUM = M_LETTERS_AL_NUM;
|
||||
static constexpr const char* LETTERS_AL_NUM_UNDERSCORE = M_LETTERS_AL_NUM "_";
|
||||
|
||||
std::string EscapeStringForQuotationMarks(const std::string_view& str);
|
||||
void EscapeStringForQuotationMarks(std::ostream& stream, const std::string_view& str);
|
||||
std::string UnescapeStringFromQuotationMarks(const std::string_view& str);
|
||||
|
Reference in New Issue
Block a user