2024-03-11 15:47:47 +00:00
|
|
|
#pragma once
|
2023-10-03 07:16:26 +00:00
|
|
|
|
2024-03-11 15:47:47 +00:00
|
|
|
#include <cstdint>
|
2024-01-21 15:17:35 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2023-10-03 07:16:26 +00:00
|
|
|
|
|
|
|
#define CODEPOINT_TYPE_UNIDENTIFIED 0
|
2024-03-11 15:47:47 +00:00
|
|
|
#define CODEPOINT_TYPE_DIGIT 1
|
|
|
|
#define CODEPOINT_TYPE_LETTER 2
|
|
|
|
#define CODEPOINT_TYPE_WHITESPACE 3
|
|
|
|
#define CODEPOINT_TYPE_ACCENT_MARK 4
|
|
|
|
#define CODEPOINT_TYPE_PUNCTUATION 5
|
|
|
|
#define CODEPOINT_TYPE_SYMBOL 6
|
|
|
|
#define CODEPOINT_TYPE_CONTROL 7
|
2023-10-03 07:16:26 +00:00
|
|
|
|
2024-03-11 15:47:47 +00:00
|
|
|
std::string unicode_cpt_to_utf8(uint32_t cp);
|
|
|
|
std::vector<uint32_t> unicode_cpts_from_utf8(const std::string & utf8);
|
2023-10-03 07:16:26 +00:00
|
|
|
|
2024-03-11 15:47:47 +00:00
|
|
|
std::vector<uint32_t> unicode_cpts_normalize_nfd(const std::vector<uint32_t> & cpts);
|
2023-10-03 07:16:26 +00:00
|
|
|
|
2024-03-11 15:47:47 +00:00
|
|
|
int unicode_cpt_type(uint32_t cp);
|
|
|
|
int unicode_cpt_type(const std::string & utf8);
|
2023-10-03 07:16:26 +00:00
|
|
|
|
2024-03-11 15:47:47 +00:00
|
|
|
std::string unicode_byte_to_utf8(uint8_t byte);
|
|
|
|
uint8_t unicode_utf8_to_byte(const std::string & utf8);
|
2023-10-03 07:16:26 +00:00
|
|
|
|
2024-03-26 21:46:21 +00:00
|
|
|
// simple tolower that only implements one-to-one mapping, not one-to-many
|
|
|
|
char32_t unicode_tolower(char32_t cp);
|