1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 16:30:43 +00:00
falk-werner_webfuse-provider/lib/wsfs/jsonrpc/util.h
2019-02-22 16:59:08 +01:00

18 lines
240 B
C

#ifndef WSFS_JSON_UTIL_H
#define WSFS_JSON_UTIL_H
#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