quoted_pair.h 291 B

123456789101112131415
  1. #pragma once
  2. #include "unicode_set.h"
  3. #include <util/system/defaults.h>
  4. namespace NUnicode {
  5. enum EUnicodeQuotedPairType {
  6. UQPT_SYMBOL,
  7. UQPT_SET,
  8. };
  9. EUnicodeQuotedPairType ResolveUnicodeQuotedPair(wchar32 escapedSymbol, wchar32& symbol, TUnicodeSet& set);
  10. }