aboutsummaryrefslogtreecommitdiff
path: root/core/text/regex/parser
diff options
context:
space:
mode:
authorFeoramund <161657516+Feoramund@users.noreply.github.com>2024-08-04 19:18:16 -0400
committerFeoramund <161657516+Feoramund@users.noreply.github.com>2024-08-04 19:18:16 -0400
commit14858309f082e7fccdeb9859422f7ba1f0ee98c8 (patch)
treeb4205ad5efcca1f4859fe11824f702b8c5036cc3 /core/text/regex/parser
parente17fc8272b08d1e2f59c13ff23df9a3d84a0c8a0 (diff)
Add explicit license info to `core:text/regex`
Diffstat (limited to 'core/text/regex/parser')
-rw-r--r--core/text/regex/parser/debugging.odin8
-rw-r--r--core/text/regex/parser/parser.odin8
2 files changed, 16 insertions, 0 deletions
diff --git a/core/text/regex/parser/debugging.odin b/core/text/regex/parser/debugging.odin
index 4d531965c..e060f58c2 100644
--- a/core/text/regex/parser/debugging.odin
+++ b/core/text/regex/parser/debugging.odin
@@ -1,5 +1,13 @@
package regex_parser
+/*
+ (c) Copyright 2024 Feoramund <rune@swevencraft.org>.
+ Made available under Odin's BSD-3 license.
+
+ List of contributors:
+ Feoramund: Initial implementation.
+*/
+
import "core:io"
write_node :: proc(w: io.Writer, node: Node) {
diff --git a/core/text/regex/parser/parser.odin b/core/text/regex/parser/parser.odin
index 1958ee399..720992cb9 100644
--- a/core/text/regex/parser/parser.odin
+++ b/core/text/regex/parser/parser.odin
@@ -1,5 +1,13 @@
package regex_parser
+/*
+ (c) Copyright 2024 Feoramund <rune@swevencraft.org>.
+ Made available under Odin's BSD-3 license.
+
+ List of contributors:
+ Feoramund: Initial implementation.
+*/
+
import "base:intrinsics"
import "core:strconv"
import "core:strings"