mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-29 10:50:05 +00:00
Add explicit license info to core:text/regex
This commit is contained in:
@@ -1,6 +1,14 @@
|
||||
// This package helps break dependency cycles.
|
||||
package regex_common
|
||||
|
||||
/*
|
||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||
Made available under Odin's BSD-3 license.
|
||||
|
||||
List of contributors:
|
||||
Feoramund: Initial implementation.
|
||||
*/
|
||||
|
||||
// VM limitations
|
||||
MAX_CAPTURE_GROUPS :: max(#config(ODIN_REGEX_MAX_CAPTURE_GROUPS, 10), 10)
|
||||
MAX_PROGRAM_SIZE :: int(max(i16))
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
package regex_common
|
||||
|
||||
/*
|
||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||
Made available under Odin's BSD-3 license.
|
||||
|
||||
List of contributors:
|
||||
Feoramund: Initial implementation.
|
||||
*/
|
||||
|
||||
@require import "core:os"
|
||||
import "core:io"
|
||||
import "core:strings"
|
||||
|
||||
Reference in New Issue
Block a user