summaryrefslogtreecommitdiff
path: root/libicu/ndk_headers/unicode/utf.h
diff options
context:
space:
mode:
Diffstat (limited to 'libicu/ndk_headers/unicode/utf.h')
-rw-r--r--libicu/ndk_headers/unicode/utf.h24
1 files changed, 14 insertions, 10 deletions
diff --git a/libicu/ndk_headers/unicode/utf.h b/libicu/ndk_headers/unicode/utf.h
index c9d5f5785..c50ed7e03 100644
--- a/libicu/ndk_headers/unicode/utf.h
+++ b/libicu/ndk_headers/unicode/utf.h
@@ -17,6 +17,8 @@
*/
/**
+ * @addtogroup ICU4C
+ * @{
* \file
* \brief C API: Code point macros
*
@@ -110,7 +112,7 @@
* Compound statements (curly braces {}) must be used for if-else-while...
* bodies and all macro statements should be terminated with semicolon.
*
- * @stable ICU 2.4
+ * \xrefitem stable "Stable" "Stable List" ICU 2.4
*/
#ifndef __UTF_H__
@@ -125,7 +127,7 @@
* Is this code point a Unicode noncharacter?
* @param c 32-bit code point
* @return true or false
- * @stable ICU 2.4
+ * \xrefitem stable "Stable" "Stable List" ICU 2.4
*/
#define U_IS_UNICODE_NONCHAR(c) \
((c)>=0xfdd0 && \
@@ -146,7 +148,7 @@
*
* @param c 32-bit code point
* @return true or false
- * @stable ICU 2.4
+ * \xrefitem stable "Stable" "Stable List" ICU 2.4
*/
#define U_IS_UNICODE_CHAR(c) \
((uint32_t)(c)<0xd800 || \
@@ -156,7 +158,7 @@
* Is this code point a BMP code point (U+0000..U+ffff)?
* @param c 32-bit code point
* @return true or false
- * @stable ICU 2.8
+ * \xrefitem stable "Stable" "Stable List" ICU 2.8
*/
#define U_IS_BMP(c) ((uint32_t)(c)<=0xffff)
@@ -164,7 +166,7 @@
* Is this code point a supplementary code point (U+10000..U+10ffff)?
* @param c 32-bit code point
* @return true or false
- * @stable ICU 2.8
+ * \xrefitem stable "Stable" "Stable List" ICU 2.8
*/
#define U_IS_SUPPLEMENTARY(c) ((uint32_t)((c)-0x10000)<=0xfffff)
@@ -172,7 +174,7 @@
* Is this code point a lead surrogate (U+d800..U+dbff)?
* @param c 32-bit code point
* @return true or false
- * @stable ICU 2.4
+ * \xrefitem stable "Stable" "Stable List" ICU 2.4
*/
#define U_IS_LEAD(c) (((c)&0xfffffc00)==0xd800)
@@ -180,7 +182,7 @@
* Is this code point a trail surrogate (U+dc00..U+dfff)?
* @param c 32-bit code point
* @return true or false
- * @stable ICU 2.4
+ * \xrefitem stable "Stable" "Stable List" ICU 2.4
*/
#define U_IS_TRAIL(c) (((c)&0xfffffc00)==0xdc00)
@@ -188,7 +190,7 @@
* Is this code point a surrogate (U+d800..U+dfff)?
* @param c 32-bit code point
* @return true or false
- * @stable ICU 2.4
+ * \xrefitem stable "Stable" "Stable List" ICU 2.4
*/
#define U_IS_SURROGATE(c) (((c)&0xfffff800)==0xd800)
@@ -197,7 +199,7 @@
* is it a lead surrogate?
* @param c 32-bit code point
* @return true or false
- * @stable ICU 2.4
+ * \xrefitem stable "Stable" "Stable List" ICU 2.4
*/
#define U_IS_SURROGATE_LEAD(c) (((c)&0x400)==0)
@@ -206,7 +208,7 @@
* is it a trail surrogate?
* @param c 32-bit code point
* @return true or false
- * @stable ICU 4.2
+ * \xrefitem stable "Stable" "Stable List" ICU 4.2
*/
#define U_IS_SURROGATE_TRAIL(c) (((c)&0x400)!=0)
@@ -223,3 +225,5 @@
#endif /* !U_NO_DEFAULT_INCLUDE_UTF_HEADERS */
#endif /* __UTF_H__ */
+
+/** @} */ // addtogroup