diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-04-28 15:29:00 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-04-28 15:29:00 +0200 |
| commit | 80878264b63cd8476def629526b294b8e129791a (patch) | |
| tree | d50ef7531aa490cad474f3e805a3f199455a12b4 /core/encoding/xml/tokenizer.odin | |
| parent | 6df21d6a9f08deb4dab96fb17f3540ebfbc8b8fe (diff) | |
[xml] Speedup.
Diffstat (limited to 'core/encoding/xml/tokenizer.odin')
| -rw-r--r-- | core/encoding/xml/tokenizer.odin | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/encoding/xml/tokenizer.odin b/core/encoding/xml/tokenizer.odin index 2da3b7683..c3fece76e 100644 --- a/core/encoding/xml/tokenizer.odin +++ b/core/encoding/xml/tokenizer.odin @@ -1,3 +1,14 @@ +/* + An XML 1.0 / 1.1 parser + + Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>. + Made available under Odin's BSD-3 license. + + A from-scratch XML implementation, loosely modeled on the [spec](https://www.w3.org/TR/2006/REC-xml11-20060816). + + List of contributors: + Jeroen van Rijn: Initial implementation. +*/ package xml import "core:fmt" |