diff options
author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2024-06-17 00:59:10 +0200 |
---|---|---|
committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2024-06-17 00:59:23 +0200 |
commit | f19e329254d89ddf6d946410b56975a5c550c3f4 (patch) | |
tree | 2773ad5bc97ead20e6d23bb9fb32032e0609ef28 | |
parent | 2cd2e7b104fdd3029169461afa3fc13a02fcd23c (diff) |
add license annotations to ser.{c,h}
-rw-r--r-- | include/ser.h | 4 | ||||
-rw-r--r-- | src/ser.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/ser.h b/include/ser.h index fc3451e..c1f207d 100644 --- a/include/ser.h +++ b/include/ser.h @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2024 Lizzy Fleckenstein <lizzy@vlhl.dev> +// +// SPDX-License-Identifier: AGPL-3.0-or-later + #ifndef SER_H #define SER_H @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2024 Lizzy Fleckenstein <lizzy@vlhl.dev> +// +// SPDX-License-Identifier: AGPL-3.0-or-later + #include <stdlib.h> #include <string.h> #include <endian.h> |