blob: ea39932e6c3df7ac8f7440d80ab056d62670ab2f (
plain) (
blame)
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
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
const struct libcmap_script *
libcmap_find_script(uint32_t codepoint, size_t *offset_out, size_t *subrange_out)
{
const struct libcmap_script *list = libcmap_script_list;
size_t i, j, n = libcmap_script_list_size;
size_t skipped;
for (i = 0; i < n; i++) {
skipped = 0;
for (j = 0; j < list[i].nranges; j++) {
if (list[i].ranges[j].first <= codepoint && list[i].ranges[j].last <= codepoint) {
if (offset_out)
*offset_out = skipped + (size_t)(codepoint - list[i].ranges[j].first);
if (subrange_out)
*subrange_out = j;
return &list[i];
}
skipped += LIBCMAP_RANGE_SIZE(&list[i].ranges[j]);
}
}
return NULL;
}
|