blob: b730212aa125d069f21628462864238180aaa5cb (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/* Scripts of Unicode characters.
Copyright (C) 2007, 2009-2022 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2007.
This file is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of the
License, or (at your option) any later version.
This file is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
#include <config.h>
/* Specification. */
#include "unictype.h"
#include <string.h>
#include "scripts.h"
#include "unictype/scripts_byname.h"
const uc_script_t *
uc_script (ucs4_t uc)
{
unsigned int index1 = uc >> script_header_0;
if (index1 < script_header_1)
{
int lookup1 = u_script.level1[index1];
if (lookup1 >= 0)
{
unsigned int index2 = (uc >> script_header_2) & script_header_3;
int lookup2 = u_script.level2[lookup1 + index2];
if (lookup2 >= 0)
{
unsigned int index3 = (uc & script_header_4);
unsigned char lookup3 = u_script.level3[lookup2 + index3];
if (lookup3 != 0xff)
return &scripts[lookup3];
}
}
}
return NULL;
}
const uc_script_t *
uc_script_byname (const char *script_name)
{
const struct named_script *found;
found = uc_script_lookup (script_name, strlen (script_name));
if (found != NULL)
return &scripts[found->index];
else
return NULL;
}
bool
uc_is_script (ucs4_t uc, const uc_script_t *script)
{
return uc_script (uc) == script;
}
void
uc_all_scripts (const uc_script_t **scriptsp, size_t *countp)
{
*scriptsp = scripts;
*countp = sizeof (scripts) / sizeof (scripts[0]);
}
|