Imported Upstream version 2.8.9
[platform/upstream/cmake.git] / Source / cm_utf8.h
1 /*============================================================================
2   CMake - Cross Platform Makefile Generator
3   Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
4
5   Distributed under the OSI-approved BSD License (the "License");
6   see accompanying file Copyright.txt for details.
7
8   This software is distributed WITHOUT ANY WARRANTY; without even the
9   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10   See the License for more information.
11 ============================================================================*/
12 #ifndef cm_utf8_h
13 #define cm_utf8_h
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 /** Decode one UTF-8 character from the input byte range.  On success,
20     stores the unicode character number in *pc and returns the first
21     position not extracted.  On failure, returns 0.  */
22 const char* cm_utf8_decode_character(const char* first, const char* last,
23                                      unsigned int* pc);
24
25 #ifdef __cplusplus
26 } /* extern "C" */
27 #endif
28
29 #endif