blob: a951071f8cf1627203aaf01308318d87f92cfc5a (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
}
 |