2016-10-30 18:24:19 +01:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2021-09-14 00:13:48 +02:00
|
|
|
#pragma once
|
2010-03-17 14:00:29 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** Decode one UTF-8 character from the input byte range. On success,
|
|
|
|
stores the unicode character number in *pc and returns the first
|
|
|
|
position not extracted. On failure, returns 0. */
|
|
|
|
const char* cm_utf8_decode_character(const char* first, const char* last,
|
|
|
|
unsigned int* pc);
|
|
|
|
|
2019-11-11 23:01:05 +01:00
|
|
|
/** Returns whether a C string is a sequence of valid UTF-8 encoded Unicode
|
|
|
|
codepoints. Returns non-zero on success. */
|
|
|
|
int cm_utf8_is_valid(const char* s);
|
|
|
|
|
2010-03-17 14:00:29 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|