23 lines
594 B
C
23 lines
594 B
C
/*
|
|
* vim:ts=4:sw=4:expandtab
|
|
*
|
|
* i3 - an improved dynamic tiling window manager
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
|
*
|
|
* yajl_utils.h
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
#include <yajl/yajl_gen.h>
|
|
#include <yajl/yajl_parse.h>
|
|
#include <yajl/yajl_version.h>
|
|
|
|
/* Shorter names for all those yajl_gen_* functions */
|
|
#define y(x, ...) yajl_gen_##x(gen, ##__VA_ARGS__)
|
|
#define ystr(str) yajl_gen_string(gen, (unsigned char *)str, strlen(str))
|
|
|
|
#define ygenalloc() yajl_gen_alloc(NULL)
|
|
#define yalloc(callbacks, client) yajl_alloc(callbacks, NULL, client)
|
|
typedef size_t ylength;
|