diff options
Diffstat (limited to 'library/cpp/unicode/set/quoted_pair.h')
-rw-r--r-- | library/cpp/unicode/set/quoted_pair.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/library/cpp/unicode/set/quoted_pair.h b/library/cpp/unicode/set/quoted_pair.h new file mode 100644 index 0000000000..a951071f8c --- /dev/null +++ b/library/cpp/unicode/set/quoted_pair.h @@ -0,0 +1,15 @@ +#pragma once + +#include "unicode_set.h" + +#include <util/system/defaults.h> + +namespace NUnicode { + enum EUnicodeQuotedPairType { + UQPT_SYMBOL, + UQPT_SET, + }; + + EUnicodeQuotedPairType ResolveUnicodeQuotedPair(wchar32 escapedSymbol, wchar32& symbol, TUnicodeSet& set); + +} |