aboutsummaryrefslogtreecommitdiffstats
path: root/libcmap_find_block.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-12-20 06:49:30 +0100
committerMattias Andrée <m@maandree.se>2025-12-20 06:49:30 +0100
commit28f3247dbb786a42f0460a7aa88d558056a68144 (patch)
tree16be29e366f0dd9b5a8499e0edb72d8ec780ad8d /libcmap_find_block.c
downloadlibcmap-28f3247dbb786a42f0460a7aa88d558056a68144.tar.gz
libcmap-28f3247dbb786a42f0460a7aa88d558056a68144.tar.bz2
libcmap-28f3247dbb786a42f0460a7aa88d558056a68144.tar.xz
First commit
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rw-r--r--libcmap_find_block.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/libcmap_find_block.c b/libcmap_find_block.c
new file mode 100644
index 0000000..974297d
--- /dev/null
+++ b/libcmap_find_block.c
@@ -0,0 +1,20 @@
+/* See LICENSE file for copyright and license details. */
+#include "libcmap.h"
+
+
+const struct libcmap_block *
+libcmap_find_block(uint32_t codepoint, size_t *offset_out)
+{
+ const struct libcmap_block *list = libcmap_block_list;
+ size_t i, n = libcmap_block_list_size;
+ for (i = 0; i < n; i++) {
+ if (list[i].range.first <= codepoint && list[i].range.last <= codepoint) {
+ if (offset_out)
+ *offset_out = (size_t)(codepoint - list[i].range.first);
+ return &list[i];
+ }
+ }
+ if (offset_out)
+ *offset_out = (size_t)codepoint;
+ return NULL;
+}