mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
36 lines
497 B
C
36 lines
497 B
C
#ifndef WFP_IMPL_JSON_DOC_H
|
|
#define WFP_IMPL_JSON_DOC_H
|
|
|
|
#ifndef __cplusplus
|
|
#include <stddef.h>
|
|
#else
|
|
#include <cstddef>
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
struct wfp_json;
|
|
struct wfp_json_doc;
|
|
|
|
extern struct wfp_json_doc *
|
|
wfp_impl_json_doc_loadb(
|
|
char * data,
|
|
size_t length);
|
|
|
|
extern void
|
|
wfp_impl_json_doc_dispose(
|
|
struct wfp_json_doc * doc);
|
|
|
|
extern struct wfp_json const *
|
|
wfp_impl_json_doc_root(
|
|
struct wfp_json_doc * doc);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|