38 #define U_COPYRIGHT_STRING_LENGTH 128
43 #define U_MAX_VERSION_LENGTH 4
48 #define U_VERSION_DELIMITER '.'
53 #define U_MAX_VERSION_STRING_LENGTH 20
110 # if U_DISABLE_RENAMING
111 # define U_ICU_NAMESPACE icu
112 namespace U_ICU_NAMESPACE { }
114 # define U_ICU_NAMESPACE U_ICU_ENTRY_POINT_RENAME(icu)
115 namespace U_ICU_NAMESPACE { }
116 namespace icu = U_ICU_NAMESPACE;
119 # define U_NAMESPACE_BEGIN extern "C++" { namespace U_ICU_NAMESPACE {
120 # define U_NAMESPACE_END } }
121 # define U_NAMESPACE_USE using namespace U_ICU_NAMESPACE;
122 # define U_NAMESPACE_QUALIFIER U_ICU_NAMESPACE::
124 # ifndef U_USING_ICU_NAMESPACE
125 # define U_USING_ICU_NAMESPACE 1
127 # if U_USING_ICU_NAMESPACE
131 # define U_NAMESPACE_BEGIN
132 # define U_NAMESPACE_END
133 # define U_NAMESPACE_USE
134 # define U_NAMESPACE_QUALIFIER
uint8_t UVersionInfo[U_MAX_VERSION_LENGTH]
The binary form of a version on ICU APIs is an array of 4 uint8_t.
C API: definitions of ICU version numbers.
#define U_MAX_VERSION_LENGTH
An ICU version consists of up to 4 numbers from 0..255.
void u_getVersion(UVersionInfo versionArray)
Gets the ICU release version.
void u_versionFromString(UVersionInfo versionArray, const char *versionString)
Parse a string with dotted-decimal version information and fill in a UVersionInfo structure with the ...
Basic types and constants for UTF.
#define U_NAMESPACE_USE
This is used to specify that the rest of the code uses the public ICU C++ API namespace.
uint16_t UChar
The base type for UTF-16 code units and pointers.
void u_versionToString(const UVersionInfo versionArray, char *versionString)
Write a string with dotted-decimal version information according to the input UVersionInfo.
void u_versionFromUString(UVersionInfo versionArray, const UChar *versionString)
Parse a Unicode string with dotted-decimal version information and fill in a UVersionInfo structure w...
#define U_STABLE
This is used to declare a function as a stable public ICU C API.