1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef REQUEST_H #define REQUEST_H #include <stdint.h> typedef uint8_t byte; typedef struct { byte opcode; byte data[512]; } request_t; #endif /* REQUEST_H */