10 lines
237 B
C
10 lines
237 B
C
|
#ifndef COMMUNICATION_H
|
||
|
#define COMMUNICATION_H
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
int serialize_message(void *msg, long msg_size, unsigned char *out);
|
||
|
int deserialize_message(unsigned char *in, long msg_size, void *msg);
|
||
|
|
||
|
#endif // !COMMUNICATION_H
|