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