aboutsummaryrefslogtreecommitdiff
path: root/core/text/regex/regex.odin
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/regex.odin
parente17fc8272b08d1e2f59c13ff23df9a3d84a0c8a0 (diff)
Add explicit license info to `core:text/regex`
Diffstat (limited to 'core/text/regex/regex.odin')
-rw-r--r--core/text/regex/regex.odin8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/text/regex/regex.odin b/core/text/regex/regex.odin
index 0d8a1d9c0..9ff924192 100644
--- a/core/text/regex/regex.odin
+++ b/core/text/regex/regex.odin
@@ -1,5 +1,13 @@
package regex
+/*
+ (c) Copyright 2024 Feoramund <rune@swevencraft.org>.
+ Made available under Odin's BSD-3 license.
+
+ List of contributors:
+ Feoramund: Initial implementation.
+*/
+
import "core:text/regex/common"
import "core:text/regex/compiler"
import "core:text/regex/optimizer"