master
h 18 lines 294 Bytes
Raw
1 // SPDX-License-Identifier: GPL-3.0-or-later
2
3 #ifndef PROTO_2_JSON_H
4 #define PROTO_2_JSON_H
5
6 #include <sys/types.h>
7
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11
12 char *protomsg_to_json(const void *protobin, size_t len, const char *msgname);
13
14 #ifdef __cplusplus
15 }
16 #endif
17
18 #endif /* PROTO_2_JSON_H */