1 /* Elementary types and macros for the GNU UniString library.
2 Copyright (C) 2002, 2005-2006, 2009-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 This file is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
20 /* Get uint8_t, uint16_t, uint32_t. */
28 /* Type representing a Unicode character. */
29 typedef uint32_t ucs4_t
;
31 /* Attribute of a function whose result depends only on the arguments
32 (not pointers!) and which has no side effects. */
33 #ifndef _UC_ATTRIBUTE_CONST
34 # if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) || defined __clang__
35 # define _UC_ATTRIBUTE_CONST __attribute__ ((__const__))
37 # define _UC_ATTRIBUTE_CONST
41 /* Attribute of a function whose result depends only on the arguments
42 (possibly pointers) and global memory, and which has no side effects. */
43 #ifndef _UC_ATTRIBUTE_PURE
44 # if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96) || defined __clang__
45 # define _UC_ATTRIBUTE_PURE __attribute__ ((__pure__))
47 # define _UC_ATTRIBUTE_PURE
51 /* Qualifier in a function declaration, that asserts that the caller must
52 pass a pointer to a different object in the specified pointer argument
53 than in the other pointer arguments. */
55 # if defined __restrict \
56 || 2 < __GNUC__ + (95 <= __GNUC_MINOR__) \
57 || __clang_major__ >= 3
58 # define _UC_RESTRICT __restrict
59 # elif 199901L <= __STDC_VERSION__ || defined restrict
60 # define _UC_RESTRICT restrict
71 #endif /* _UNITYPES_H */