summaryrefslogtreecommitdiff
path: root/lib/binstruct
diff options
context:
space:
mode:
Diffstat (limited to 'lib/binstruct')
-rw-r--r--lib/binstruct/binint.go4
-rw-r--r--lib/binstruct/binint/builtins.go4
-rw-r--r--lib/binstruct/binstruct_test.go4
-rw-r--r--lib/binstruct/marshal.go4
-rw-r--r--lib/binstruct/size.go4
-rw-r--r--lib/binstruct/structs.go4
-rw-r--r--lib/binstruct/unmarshal.go4
7 files changed, 28 insertions, 0 deletions
diff --git a/lib/binstruct/binint.go b/lib/binstruct/binint.go
index 89bb4f6..302ab8d 100644
--- a/lib/binstruct/binint.go
+++ b/lib/binstruct/binint.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
+//
+// SPDX-License-Identifier: GPL-2.0-or-later
+
package binstruct
import (
diff --git a/lib/binstruct/binint/builtins.go b/lib/binstruct/binint/builtins.go
index 04fc477..5363dbe 100644
--- a/lib/binstruct/binint/builtins.go
+++ b/lib/binstruct/binint/builtins.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
+//
+// SPDX-License-Identifier: GPL-2.0-or-later
+
package binint
import (
diff --git a/lib/binstruct/binstruct_test.go b/lib/binstruct/binstruct_test.go
index 542746f..105e790 100644
--- a/lib/binstruct/binstruct_test.go
+++ b/lib/binstruct/binstruct_test.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
+//
+// SPDX-License-Identifier: GPL-2.0-or-later
+
package binstruct_test
import (
diff --git a/lib/binstruct/marshal.go b/lib/binstruct/marshal.go
index 684d2f3..8159191 100644
--- a/lib/binstruct/marshal.go
+++ b/lib/binstruct/marshal.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
+//
+// SPDX-License-Identifier: GPL-2.0-or-later
+
package binstruct
import (
diff --git a/lib/binstruct/size.go b/lib/binstruct/size.go
index 6563455..03b42d8 100644
--- a/lib/binstruct/size.go
+++ b/lib/binstruct/size.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
+//
+// SPDX-License-Identifier: GPL-2.0-or-later
+
package binstruct
import (
diff --git a/lib/binstruct/structs.go b/lib/binstruct/structs.go
index ec2bb7d..2f224dd 100644
--- a/lib/binstruct/structs.go
+++ b/lib/binstruct/structs.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
+//
+// SPDX-License-Identifier: GPL-2.0-or-later
+
package binstruct
import (
diff --git a/lib/binstruct/unmarshal.go b/lib/binstruct/unmarshal.go
index 1959d45..c545137 100644
--- a/lib/binstruct/unmarshal.go
+++ b/lib/binstruct/unmarshal.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
+//
+// SPDX-License-Identifier: GPL-2.0-or-later
+
package binstruct
import (