36 #define U_COPYRIGHT_STRING_LENGTH 128 41 #define U_MAX_VERSION_LENGTH 4 46 #define U_VERSION_DELIMITER '.' 51 #define U_MAX_VERSION_STRING_LENGTH 20 108 # if U_DISABLE_RENAMING 109 # define U_ICU_NAMESPACE icu 110 namespace U_ICU_NAMESPACE { }
112 # define U_ICU_NAMESPACE U_ICU_ENTRY_POINT_RENAME(icu) 113 namespace U_ICU_NAMESPACE { }
114 namespace icu = U_ICU_NAMESPACE;
117 # define U_NAMESPACE_BEGIN extern "C++" { namespace U_ICU_NAMESPACE { 118 # define U_NAMESPACE_END } } 119 # define U_NAMESPACE_USE using namespace U_ICU_NAMESPACE; 120 # define U_NAMESPACE_QUALIFIER U_ICU_NAMESPACE:: 122 # ifndef U_USING_ICU_NAMESPACE 123 # define U_USING_ICU_NAMESPACE 1 125 # if U_USING_ICU_NAMESPACE 129 # define U_NAMESPACE_BEGIN 130 # define U_NAMESPACE_END 131 # define U_NAMESPACE_USE 132 # 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
Define UChar to be UCHAR_TYPE, if that is #defined (for example, to char16_t), or wchar_t if that is ...
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.