11 lines
123 B
C
11 lines
123 B
C
#ifndef NETWORK_H
|
|
#define NETWORK_H
|
|
|
|
#include <stdint.h>
|
|
|
|
struct packet_header {
|
|
uint16_t size;
|
|
uint8_t type;
|
|
};
|
|
|
|
#endif
|