1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/lib/webfuse/impl/jsonrpc/response.h

23 lines
293 B
C
Raw Normal View History

#ifndef WF_IMPL_JSONRPC_RESPONSE_H
#define WF_IMPL_JSONRPC_RESPONSE_H
#ifndef __cplusplus
#include <stdbool.h>
#endif
#ifdef __cplusplus
2020-02-29 01:32:03 +00:00
extern "C"
{
2020-02-29 01:32:03 +00:00
#endif
struct wf_json;
extern bool wf_impl_jsonrpc_is_response(
struct wf_json const * message);
#ifdef __cplusplus
}
#endif
#endif