summaryrefslogtreecommitdiffstats
path: root/include/sway_json_helper.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-12-17 15:51:49 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2017-12-17 15:51:49 -0500
commit1c4a086e7556475139960a25cb642f115d057c23 (patch)
treebaa407363899155a876ea6993ad55020059c5cfd /include/sway_json_helper.h
parentMerge pull request #1519 from ggreer/clear-password-buffer-0.15 (diff)
parentAdaptions for API change in json-c v0.13 (diff)
downloadsway-1c4a086e7556475139960a25cb642f115d057c23.tar.gz
sway-1c4a086e7556475139960a25cb642f115d057c23.tar.zst
sway-1c4a086e7556475139960a25cb642f115d057c23.zip
Merge remote-tracking branch 'besser82/bugfix/json-c' into 0.15
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