mirror of
https://gitlab.com/d3tn/ud3tn.git
synced 2026-08-14 12:43:26 +02:00
ud3tn is available under multiple licenses and we want to reflect this in our source code. But which license information should appear first and how can we manage this efficiently in the future? The Linux Kernel uses SPDX expressions instead of boilerplate sections. This seems to be a great approach, so we do the same here. Signed-off-by: Georg Alexander Murzik <georg.murzik@d3tn.com>
13 lines
322 B
C
13 lines
322 B
C
// SPDX-License-Identifier: BSD-3-Clause OR Apache-2.0
|
|
#ifndef BUNDLE7_TIMESTAMP_H_INCLUDED
|
|
#define BUNDLE7_TIMESTAMP_H_INCLUDED
|
|
|
|
#include "cbor.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
CborError bundle7_timestamp_parse(CborValue *it,
|
|
uint64_t *creation_timestamp_ms,
|
|
uint64_t *sequence_number);
|
|
|
|
#endif // BUNDLE7_TIMESTAMP_H_INCLUDED
|