2 * vim:ts=4:sw=4:expandtab
4 * i3 - an improved dynamic tiling window manager
5 * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
12 #include <yajl/yajl_gen.h>
13 #include <yajl/yajl_parse.h>
14 #include <yajl/yajl_version.h>
16 /* Shorter names for all those yajl_gen_* functions */
17 #define y(x, ...) yajl_gen_##x(gen, ##__VA_ARGS__)
18 #define ystr(str) yajl_gen_string(gen, (unsigned char *)str, strlen(str))
20 #define ygenalloc() yajl_gen_alloc(NULL)
21 #define yalloc(callbacks, client) yajl_alloc(callbacks, NULL, client)
22 typedef size_t ylength;