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