1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 18:10:46 +00:00
falk-werner_webfuse-provider/lib/wsfs/adapter/jsonrpc/util.h

18 lines
240 B
C
Raw Normal View History

#ifndef WSFS_JSON_UTIL_H
#define WSFS_JSON_UTIL_H
2019-02-09 02:08:02 +00:00
#include <jansson.h>
#ifdef __cplusplus
extern "C"
{
#endif
extern int wsfs_json_get_int(json_t const * object, char const * key, int default_value);
#ifdef __cplusplus
}
#endif
#endif