utf8proc.h (utf8proc-2.6.0) | : | utf8proc.h (utf8proc-2.6.1) | ||
---|---|---|---|---|
skipping to change at line 75 | skipping to change at line 75 | |||
* @note The shared-library version number in the Makefile | * @note The shared-library version number in the Makefile | |||
* (and CMakeLists.txt, and MANIFEST) may be different, | * (and CMakeLists.txt, and MANIFEST) may be different, | |||
* being based on ABI compatibility rather than API compatibility. | * being based on ABI compatibility rather than API compatibility. | |||
*/ | */ | |||
/** @{ */ | /** @{ */ | |||
/** The MAJOR version number (increased when backwards API compatibility is brok en). */ | /** The MAJOR version number (increased when backwards API compatibility is brok en). */ | |||
#define UTF8PROC_VERSION_MAJOR 2 | #define UTF8PROC_VERSION_MAJOR 2 | |||
/** The MINOR version number (increased when new functionality is added in a bac kwards-compatible manner). */ | /** The MINOR version number (increased when new functionality is added in a bac kwards-compatible manner). */ | |||
#define UTF8PROC_VERSION_MINOR 6 | #define UTF8PROC_VERSION_MINOR 6 | |||
/** The PATCH version (increased for fixes that do not change the API). */ | /** The PATCH version (increased for fixes that do not change the API). */ | |||
#define UTF8PROC_VERSION_PATCH 0 | #define UTF8PROC_VERSION_PATCH 1 | |||
/** @} */ | /** @} */ | |||
#include <stdlib.h> | #include <stdlib.h> | |||
#if defined(_MSC_VER) && _MSC_VER < 1800 | #if defined(_MSC_VER) && _MSC_VER < 1800 | |||
// MSVC prior to 2013 lacked stdbool.h and inttypes.h | // MSVC prior to 2013 lacked stdbool.h and inttypes.h | |||
typedef signed char utf8proc_int8_t; | typedef signed char utf8proc_int8_t; | |||
typedef unsigned char utf8proc_uint8_t; | typedef unsigned char utf8proc_uint8_t; | |||
typedef short utf8proc_int16_t; | typedef short utf8proc_int16_t; | |||
typedef unsigned short utf8proc_uint16_t; | typedef unsigned short utf8proc_uint16_t; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |