* Changed header file include guards to unique namespace. Updated file headers comments with SPDX [issue #55] (#666)

This commit is contained in:
Steve Karg
2024-07-19 17:16:28 -05:00
committed by GitHub
parent 1e889b633c
commit 00ab206075
355 changed files with 2597 additions and 8082 deletions
+9 -7
View File
@@ -1,10 +1,12 @@
/**
* @file
* @author Steve Karg
* @date 2016
*/
#ifndef VMAC_H
#define VMAC_H
* @file
* @brief API for Virtual MAC (VMAC) of BACnet/IPv6 neighbors
* @author Steve Karg <skarg@users.sourceforge.net>
* @date 2016
* @copyright SPDX-License-Identifier: MIT
*/
#ifndef BACNET_BASIC_BBMD6_VMAC_H
#define BACNET_BASIC_BBMD6_VMAC_H
#include <stdint.h>
#include <stdbool.h>
@@ -19,7 +21,7 @@
* @{
*/
struct vmac_data {
uint8_t mac[18];
uint8_t mac[VMAC_MAC_MAX];
uint8_t mac_len;
};
/** @} */