summaryrefslogtreecommitdiffstats
path: root/include/sway_json_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway_json_helper.h')
-rw-r--r--include/sway_json_helper.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/sway_json_helper.h b/include/sway_json_helper.h
new file mode 100644
index 00000000..66f9cff1
--- /dev/null
+++ b/include/sway_json_helper.h
@@ -0,0 +1,16 @@
1#ifndef _SWAY_JSON_HELPER_H
2#define _SWAY_JSON_HELPER_H
3
4#include <json-c/json.h>
5
6// Macros for checking a specific version.
7#define JSON_C_VERSION_013 (13 << 8)
8
9// json-c v0.13 uses size_t for array_list_length().
10#if defined(JSON_C_VERSION_NUM) && JSON_C_VERSION_NUM >= JSON_C_VERSION_013
11typedef size_t json_ar_len_t;
12#else
13typedef int json_ar_len_t;
14#endif
15
16#endif // _SWAY_JSON_HELPER_H