forked from rougier/freetype-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utf8-utils.h
68 lines (58 loc) · 1.3 KB
/
utf8-utils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* Freetype GL - A C OpenGL Freetype engine
*
* Distributed under the OSI-approved BSD 2-Clause License. See accompanying
* file `LICENSE` for more details.
*/
#ifndef __UTF8_UTILS_H__
#define __UTF8_UTILS_H__
#include <stdlib.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
namespace ftgl {
#endif
/**
* @file utf8-utils.h
* @author Marcel Metz <[email protected]>
*
* defgroup utf8-utils UTF-8 Utilities
*
* @{
*/
/**
* Returns the size in bytes of a given UTF-8 encoded character surrogate
*
* @param character An UTF-8 encoded character
*
* @return The length of the surrogate in bytes.
*/
size_t
utf8_surrogate_len( const char* character );
/**
* Return the length of the given UTF-8 encoded and
* NULL terminated string.
*
* @param string An UTF-8 encoded string
*
* @return The length of the string in characters.
*/
size_t
utf8_strlen( const char* string );
/**
* Converts a given UTF-8 encoded character to its UTF-32 LE equivalent
*
* @param character An UTF-8 encoded character
*
* @return The equivalent of the given character in UTF-32 LE
* encoding.
*/
uint32_t
utf8_to_utf32( const char * character );
/**
* @}
*/
#ifdef __cplusplus
}
}
#endif
#endif /* #define __UTF8_UTILS_H__ */