diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 15:27:53 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-09 15:27:53 +0200 |
| commit | aec7d6480be79bb32c9937ff06ec38baff89e344 (patch) | |
| tree | f7959db398e1a6f78259a6e73c01097ec29da6d6 /core/encoding/base32/base32.odin | |
| parent | 153b0de4206773956d0402c880de2ff5254947e4 (diff) | |
Package lines for base32, move its tests to tests"
Diffstat (limited to 'core/encoding/base32/base32.odin')
| -rw-r--r-- | core/encoding/base32/base32.odin | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/encoding/base32/base32.odin b/core/encoding/base32/base32.odin index 2267a872b..6c3abf29c 100644 --- a/core/encoding/base32/base32.odin +++ b/core/encoding/base32/base32.odin @@ -1,6 +1,8 @@ +package encoding_base32 + // Base32 encoding/decoding implementation as specified in RFC 4648. // [[ More; https://www.rfc-editor.org/rfc/rfc4648.html ]] -package encoding_base32 + // @note(zh): Encoding utility for Base32 // A secondary param can be used to supply a custom alphabet to |