blob: 1c75397d6e234f094bb0247f2490c6c642d64956 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once
#include "td/utils/common.h"
namespace td {
enum class UnicodeSimpleCategory { Unknown, Letter, DecimalNumber, Number, Separator };
UnicodeSimpleCategory get_unicode_simple_category(uint32 code);
/**
* Prepares unicode character for search, leaving only digits and lowercased letters.
* Return code of replacing character or 0 if the character should be skipped.
*/
uint32 prepare_search_character(uint32 code);
/**
* Converts unicode character to lower case.
*/
uint32 unicode_to_lower(uint32 code);
} // namespace td
|