We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a8526c commit a78bee9Copy full SHA for a78bee9
utf8proc.h
@@ -79,7 +79,7 @@
79
#include <stdlib.h>
80
81
#if defined(_MSC_VER) && _MSC_VER < 1800
82
-// MSVC prior to 2013 lacked stdbool.h and inttypes.h
+// MSVC prior to 2013 lacked stdbool.h and stdint.h
83
typedef signed char utf8proc_int8_t;
84
typedef unsigned char utf8proc_uint8_t;
85
typedef short utf8proc_int16_t;
@@ -107,7 +107,7 @@ typedef bool utf8proc_bool;
107
#else
108
# include <stddef.h>
109
# include <stdbool.h>
110
-# include <inttypes.h>
+# include <stdint.h>
111
typedef int8_t utf8proc_int8_t;
112
typedef uint8_t utf8proc_uint8_t;
113
typedef int16_t utf8proc_int16_t;
0 commit comments