blob: 10256d2e6e7f571f62145e58015431289c541a8f (
plain) (
tree)
|
|
#pragma once
#include <util/charset/unidata.h>
#include <util/system/defaults.h>
#include <util/generic/strbuf.h>
namespace NUnicode {
namespace NPrivate {
struct TCategoryRanges {
size_t Count;
const wchar32* Data;
};
const TCategoryRanges& GetCategoryRanges(WC_TYPE cat);
const TCategoryRanges& GetCategoryRanges(const TStringBuf& category);
}
}
|