pebble/third_party/nanopb/tests/fuzztest/validation.h
2025-01-27 11:38:16 -08:00

12 lines
268 B
C

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