validation.h 268 B

123456789101112
  1. /* This module validates that the message structures are in valid state
  2. * after decoding the input data. */
  3. #ifndef VALIDATION_H
  4. #define VALIDATION_H
  5. #include <pb.h>
  6. void validate_message(const void *msg, size_t structsize, const pb_msgdesc_t *msgtype);
  7. #endif