mirror of
https://github.com/google/pebble.git
synced 2025-03-16 01:01:20 +00:00
13 lines
268 B
C
13 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
|
||
|
|