proto_2_json.h 294 B

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