1 /*
2  * The internal type definitions
3  *
4  * Copyright (C) 2008-2020, Joachim Metz <joachim.metz@gmail.com>
5  *
6  * Refer to AUTHORS for acknowledgements.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20  */
21 
22 #if !defined( _LIBUNA_INTERNAL_TYPES_H )
23 #define _LIBUNA_INTERNAL_TYPES_H
24 
25 #include <common.h>
26 #include <types.h>
27 
28 /* Define HAVE_LOCAL_LIBUNA for local use of libuna
29  * The definitions in <libuna/types.h> are copied here
30  * for local use of libuna
31  */
32 #if defined( HAVE_LOCAL_LIBUNA )
33 
34 /* Unicode character definitions
35  */
36 typedef uint32_t libuna_unicode_character_t;
37 
38 /* UTF-8 character definitions
39  */
40 typedef uint8_t libuna_utf8_character_t;
41 
42 /* UTF-16 character definitions
43  */
44 typedef uint16_t libuna_utf16_character_t;
45 
46 /* UTF-32 character definitions
47  */
48 typedef uint32_t libuna_utf32_character_t;
49 
50 #endif /* defined( HAVE_LOCAL_LIBUNA ) */
51 
52 #endif /* !defined( _LIBUNA_INTERNAL_TYPES_H ) */
53 
54