https://github.com/Kitware/CMake
Raw File
Tip revision: f478fa633daeb1432805821adddc40730ffd283d authored by Brad King on 07 September 2018, 10:40:49 UTC
CMake 3.12.2
Tip revision: f478fa6
cm_utf8.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#ifndef cm_utf8_h
#define cm_utf8_h

#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);

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif
back to top