Rename layer2_structs -> packet_structs

This commit is contained in:
Thomas Kolb 2024-07-02 20:09:56 +02:00
parent f17d5649fc
commit 9a151e0cbb
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
#include <assert.h>
#include <string.h>
#include "layer2_structs.h"
#include "packet_structs.h"
size_t layer2_encode_packet_header(const layer2_packet_header_t *header, uint8_t *encoded)

View File

@ -1,5 +1,5 @@
#ifndef LAYER2_STRUCTS_H
#define LAYER2_STRUCTS_H
#ifndef PACKET_STRUCTS_H
#define PACKET_STRUCTS_H
#include <stdint.h>
#include <stddef.h>
@ -55,4 +55,4 @@ typedef struct layer2_data_header_s {
// TODO
#endif // LAYER2_STRUCTS_H
#endif // PACKET_STRUCTS_H