diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-09 12:37:18 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-09 12:37:18 +0100 |
| commit | 857c78c22bf97417b74b60cf08eb24ece546e26c (patch) | |
| tree | b27b3ff7a59e042efa934227d322ebd13f7d3832 /core/unicode | |
| parent | 9ddb93bd01fbbd57267260dd7c1e894bc4e82cbb (diff) | |
Add doc lins to unicode packages
Diffstat (limited to 'core/unicode')
| -rw-r--r-- | core/unicode/doc.odin | 2 | ||||
| -rw-r--r-- | core/unicode/utf16/utf16.odin | 1 | ||||
| -rw-r--r-- | core/unicode/utf8/utf8.odin | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/core/unicode/doc.odin b/core/unicode/doc.odin new file mode 100644 index 000000000..4d9ff78f5 --- /dev/null +++ b/core/unicode/doc.odin @@ -0,0 +1,2 @@ +// package unicode provides data and procedures to test properties of Unicode code points +package unicode
\ No newline at end of file diff --git a/core/unicode/utf16/utf16.odin b/core/unicode/utf16/utf16.odin index d3f98584b..75c553f62 100644 --- a/core/unicode/utf16/utf16.odin +++ b/core/unicode/utf16/utf16.odin @@ -1,3 +1,4 @@ +// package utf16 implements procedures and constants to support text-encoding in the UTF-16 character encoding package utf16 import "core:unicode/utf8" diff --git a/core/unicode/utf8/utf8.odin b/core/unicode/utf8/utf8.odin index 67f8a8be9..31bdb3491 100644 --- a/core/unicode/utf8/utf8.odin +++ b/core/unicode/utf8/utf8.odin @@ -1,3 +1,4 @@ +// package utf8 implements procedures and constants to support text-encoding in the UTF-8 character encoding package utf8 RUNE_ERROR :: '\ufffd' |