21 #ifndef COMMUNICATION_H 22 #define COMMUNICATION_H 24 #define COMMUNICATION_START_BYTE 0x09 25 #define COMMUNICATION_INT_BYTE 0x07 26 #define COMMUNICATION_END_BYTE 0x0a 33 int encode(
const unsigned char *src,
int len,
unsigned char *dst,
int buf_max);
34 int decode(
const unsigned char *src,
int len,
unsigned char *dst,
int buf_max);
40 #endif // COMMUNICATION_H int decode(const unsigned char *src, int len, unsigned char *dst, int buf_max)
デコード
int encode(const unsigned char *src, int len, unsigned char *dst, int buf_max)
エンコード