mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 14:18:47 +00:00
Change Odin's LICENSE to zlib from BSD 3-clause
This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form.
This commit is contained in:
@@ -1,26 +1,17 @@
|
|||||||
Copyright (c) 2016-2024 Ginger Bill. All rights reserved.
|
Copyright (c) 2016-2025 Ginger Bill. All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
This software is provided 'as-is', without any express or implied
|
||||||
modification, are permitted provided that the following conditions are met:
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
arising from the use of this software.
|
||||||
|
|
||||||
1. Redistributions of source code must retain the above copyright notice, this
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
list of conditions and the following disclaimer.
|
including commercial applications, and to alter it and redistribute it
|
||||||
|
freely, subject to the following restrictions:
|
||||||
|
|
||||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
1. The origin of this software must not be misrepresented; you must not
|
||||||
this list of conditions and the following disclaimer in the documentation
|
claim that you wrote the original software. If you use this software
|
||||||
and/or other materials provided with the distribution.
|
in a product, an acknowledgment in the product documentation would be
|
||||||
|
appreciated but is not required.
|
||||||
3. Neither the name of the copyright holder nor the names of its
|
2. Altered source versions must be plainly marked as such, and must not be
|
||||||
contributors may be used to endorse or promote products derived from
|
misrepresented as being the original software.
|
||||||
this software without specific prior written permission.
|
3. This notice may not be removed or altered from any source distribution.
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
||||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
||||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
||||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
||||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
||||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
||||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
||||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
@@ -6,8 +6,6 @@ _ :: intrinsics
|
|||||||
// High performance, cache-friendly, open-addressed Robin Hood hashing hash map
|
// High performance, cache-friendly, open-addressed Robin Hood hashing hash map
|
||||||
// data structure with various optimizations for Odin.
|
// data structure with various optimizations for Odin.
|
||||||
//
|
//
|
||||||
// Copyright 2022 (c) Dale Weiler
|
|
||||||
//
|
|
||||||
// The core of the hash map data structure is the Raw_Map struct which is a
|
// The core of the hash map data structure is the Raw_Map struct which is a
|
||||||
// type-erased representation of the map. This type-erased representation is
|
// type-erased representation of the map. This type-erased representation is
|
||||||
// used in two ways: static and dynamic. When static type information is known,
|
// used in two ways: static and dynamic. When static type information is known,
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package compress
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation, optimization.
|
Jeroen van Rijn: Initial implementation, optimization.
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ package compress_gzip
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package compress_gzip
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package compress_shoco
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ package compress_zlib
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package compress_zlib
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation, optimization.
|
Jeroen van Rijn: Initial implementation, optimization.
|
||||||
|
|||||||
@@ -29,4 +29,4 @@ constant-time byte comparison.
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
This library is made available under the BSD-3 license.
|
This library is made available under the zlib license.
|
||||||
@@ -2,7 +2,7 @@ package _blake2
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package _sha3
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ package blake2b
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ package blake2s
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package crypto_hash
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ package keccak
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ package md5
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ package sha1
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ package sha2
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ package sha3
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package shake
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package siphash
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2022 zhibog
|
Copyright 2022 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog: Initial implementation.
|
zhibog: Initial implementation.
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ package sm3
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 zhibog
|
Copyright 2021 zhibog
|
||||||
Made available under the BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
zhibog, dotbmp: Initial implementation.
|
zhibog, dotbmp: Initial implementation.
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ package encoding_unicode_entity
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
+14
-25
@@ -1,28 +1,17 @@
|
|||||||
BSD 3-Clause License
|
Copyright (c) 2024-2025 Feoramund, Ginger Bill. All rights reserved.
|
||||||
|
|
||||||
Copyright (c) 2024, Feoramund
|
This software is provided 'as-is', without any express or implied
|
||||||
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
arising from the use of this software.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
modification, are permitted provided that the following conditions are met:
|
including commercial applications, and to alter it and redistribute it
|
||||||
|
freely, subject to the following restrictions:
|
||||||
|
|
||||||
1. Redistributions of source code must retain the above copyright notice, this
|
1. The origin of this software must not be misrepresented; you must not
|
||||||
list of conditions and the following disclaimer.
|
claim that you wrote the original software. If you use this software
|
||||||
|
in a product, an acknowledgment in the product documentation would be
|
||||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
appreciated but is not required.
|
||||||
this list of conditions and the following disclaimer in the documentation
|
2. Altered source versions must be plainly marked as such, and must not be
|
||||||
and/or other materials provided with the distribution.
|
misrepresented as being the original software.
|
||||||
|
3. This notice may not be removed or altered from any source distribution.
|
||||||
3. Neither the name of the copyright holder nor the names of its
|
|
||||||
contributors may be used to endorse or promote products derived from
|
|
||||||
this software without specific prior written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
||||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
||||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
||||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
||||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
||||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
||||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
||||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
@@ -2,7 +2,7 @@ package encoding_varint
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ package encoding_xml
|
|||||||
An XML 1.0 / 1.1 parser
|
An XML 1.0 / 1.1 parser
|
||||||
|
|
||||||
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
A from-scratch XML implementation, loosely modeled on the [spec](https://www.w3.org/TR/2006/REC-xml11-20060816).
|
A from-scratch XML implementation, loosely modeled on the [spec](https://www.w3.org/TR/2006/REC-xml11-20060816).
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ package encoding_xml
|
|||||||
An XML 1.0 / 1.1 parser
|
An XML 1.0 / 1.1 parser
|
||||||
|
|
||||||
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
This file contains helper functions.
|
This file contains helper functions.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ package encoding_xml
|
|||||||
An XML 1.0 / 1.1 parser
|
An XML 1.0 / 1.1 parser
|
||||||
|
|
||||||
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
A from-scratch XML implementation, loosely modeled on the [spec](https://www.w3.org/TR/2006/REC-xml11-20060816).
|
A from-scratch XML implementation, loosely modeled on the [spec](https://www.w3.org/TR/2006/REC-xml11-20060816).
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package encoding_xml
|
|||||||
An XML 1.0 / 1.1 parser
|
An XML 1.0 / 1.1 parser
|
||||||
|
|
||||||
2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
available under Odin's BSD-3 license.
|
available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
- Jeroen van Rijn: Initial implementation.
|
- Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
+14
-25
@@ -1,28 +1,17 @@
|
|||||||
BSD 3-Clause License
|
Copyright (c) 2024-2025 Feoramund, Ginger Bill. All rights reserved.
|
||||||
|
|
||||||
Copyright (c) 2024, Feoramund
|
This software is provided 'as-is', without any express or implied
|
||||||
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
arising from the use of this software.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
modification, are permitted provided that the following conditions are met:
|
including commercial applications, and to alter it and redistribute it
|
||||||
|
freely, subject to the following restrictions:
|
||||||
|
|
||||||
1. Redistributions of source code must retain the above copyright notice, this
|
1. The origin of this software must not be misrepresented; you must not
|
||||||
list of conditions and the following disclaimer.
|
claim that you wrote the original software. If you use this software
|
||||||
|
in a product, an acknowledgment in the product documentation would be
|
||||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
appreciated but is not required.
|
||||||
this list of conditions and the following disclaimer in the documentation
|
2. Altered source versions must be plainly marked as such, and must not be
|
||||||
and/or other materials provided with the distribution.
|
misrepresented as being the original software.
|
||||||
|
3. This notice may not be removed or altered from any source distribution.
|
||||||
3. Neither the name of the copyright holder nor the names of its
|
|
||||||
contributors may be used to endorse or promote products derived from
|
|
||||||
this software without specific prior written permission.
|
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
||||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
||||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
||||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
||||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
||||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
||||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
||||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
@@ -6,7 +6,7 @@ package xxhash
|
|||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
|
|
||||||
Made available under Odin's BSD-3 license, based on the original C code.
|
Made available under Odin's license, based on the original C code.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ package xxhash
|
|||||||
An implementation of Yann Collet's [xxhash Fast Hash Algorithm](https://cyan4973.github.io/xxHash/).
|
An implementation of Yann Collet's [xxhash Fast Hash Algorithm](https://cyan4973.github.io/xxHash/).
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
|
|
||||||
Made available under Odin's BSD-3 license, based on the original C code.
|
Made available under Odin's license, based on the original C code.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ package xxhash
|
|||||||
An implementation of Yann Collet's [xxhash Fast Hash Algorithm](https://cyan4973.github.io/xxHash/).
|
An implementation of Yann Collet's [xxhash Fast Hash Algorithm](https://cyan4973.github.io/xxHash/).
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
|
|
||||||
Made available under Odin's BSD-3 license, based on the original C code.
|
Made available under Odin's license, based on the original C code.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ package xxhash
|
|||||||
An implementation of Yann Collet's [xxhash Fast Hash Algorithm](https://cyan4973.github.io/xxHash/).
|
An implementation of Yann Collet's [xxhash Fast Hash Algorithm](https://cyan4973.github.io/xxHash/).
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
|
|
||||||
Made available under Odin's BSD-3 license, based on the original C code.
|
Made available under Odin's license, based on the original C code.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ package xxhash
|
|||||||
An implementation of Yann Collet's [xxhash Fast Hash Algorithm](https://cyan4973.github.io/xxHash/).
|
An implementation of Yann Collet's [xxhash Fast Hash Algorithm](https://cyan4973.github.io/xxHash/).
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
|
|
||||||
Made available under Odin's BSD-3 license, based on the original C code.
|
Made available under Odin's license, based on the original C code.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package image
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation, optimization.
|
Jeroen van Rijn: Initial implementation, optimization.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package png
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ package qoi
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package tga
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package math_big
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
This file collects public proc maps and their aliases.
|
This file collects public proc maps and their aliases.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package math_big
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import "base:intrinsics"
|
import "base:intrinsics"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package math_big
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import "base:intrinsics"
|
import "base:intrinsics"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package math_big
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
========================== Low-level routines ==========================
|
========================== Low-level routines ==========================
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package math_big
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
An arbitrary precision mathematics implementation in Odin.
|
An arbitrary precision mathematics implementation in Odin.
|
||||||
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package math_big
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
An arbitrary precision mathematics implementation in Odin.
|
An arbitrary precision mathematics implementation in Odin.
|
||||||
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package math_big
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
An arbitrary precision mathematics implementation in Odin.
|
An arbitrary precision mathematics implementation in Odin.
|
||||||
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package math_big
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
An arbitrary precision mathematics implementation in Odin.
|
An arbitrary precision mathematics implementation in Odin.
|
||||||
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package math_big
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
An arbitrary precision mathematics implementation in Odin.
|
An arbitrary precision mathematics implementation in Odin.
|
||||||
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package math_big
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
A BigInt implementation in Odin.
|
A BigInt implementation in Odin.
|
||||||
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package mem_tlsf
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2024 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2024 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Matt Conte: Original C implementation, see LICENSE file in this package
|
Matt Conte: Original C implementation, see LICENSE file in this package
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2024 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2024 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Matt Conte: Original C implementation, see LICENSE file in this package
|
Matt Conte: Original C implementation, see LICENSE file in this package
|
||||||
|
|||||||
+1
-1
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
+1
-1
@@ -12,7 +12,7 @@ package net
|
|||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Copyright 2025 Christiano Haesbaert <haesbaert@haesbaert.org>.
|
Copyright 2025 Christiano Haesbaert <haesbaert@haesbaert.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
+1
-1
@@ -35,7 +35,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022-2023 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022-2023 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022-2023 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022-2023 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
+1
-1
@@ -9,7 +9,7 @@ package net
|
|||||||
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Tetralux: Initial implementation
|
Tetralux: Initial implementation
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package heap
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2022 Dale Weiler <weilercdale@gmail.com>.
|
Copyright 2022 Dale Weiler <weilercdale@gmail.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Dale Weiler: Initial implementation
|
Dale Weiler: Initial implementation
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package sys_freebsd
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package sys_freebsd
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ package sysinfo
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package testing
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Total rewrite.
|
Feoramund: Total rewrite.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package testing
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Ginger Bill: Initial implementation.
|
Ginger Bill: Initial implementation.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package testing
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Total rewrite.
|
Feoramund: Total rewrite.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package testing
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Ginger Bill: Initial implementation.
|
Ginger Bill: Initial implementation.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package testing
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Total rewrite.
|
Feoramund: Total rewrite.
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ package testing
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Total rewrite.
|
Feoramund: Total rewrite.
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ package testing
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Total rewrite.
|
Feoramund: Total rewrite.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package testing
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Ginger Bill: Initial implementation.
|
Ginger Bill: Initial implementation.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package i18n
|
|||||||
A parser for GNU GetText .MO files.
|
A parser for GNU GetText .MO files.
|
||||||
|
|
||||||
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
A from-scratch implementation based after the specification found here:
|
A from-scratch implementation based after the specification found here:
|
||||||
https://www.gnu.org/software/gettext/manual/html_node/MO-Files.html
|
https://www.gnu.org/software/gettext/manual/html_node/MO-Files.html
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package i18n
|
|||||||
Internationalization helpers.
|
Internationalization helpers.
|
||||||
|
|
||||||
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2021-2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Jeroen van Rijn: Initial implementation.
|
Jeroen van Rijn: Initial implementation.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package i18n
|
|||||||
A parser for Qt Linguist TS files.
|
A parser for Qt Linguist TS files.
|
||||||
|
|
||||||
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
Copyright 2022 Jeroen van Rijn <nom@duclavier.com>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
A from-scratch implementation based after the specification found here:
|
A from-scratch implementation based after the specification found here:
|
||||||
https://doc.qt.io/qt-5/linguist-ts-file-format.html
|
https://doc.qt.io/qt-5/linguist-ts-file-format.html
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package regex_common
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package regex_common
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package regex_compiler
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package regex_compiler
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package regex_optimizer
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package regex_parser
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package regex_parser
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package regex
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package regex_tokenizer
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package regex_vm
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package regex_vm
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
Feoramund: Initial implementation.
|
Feoramund: Initial implementation.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
Copyright 2023 oskarnp <oskarnp@proton.me>
|
Copyright 2023 oskarnp <oskarnp@proton.me>
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
|
|
||||||
List of contributors:
|
List of contributors:
|
||||||
oskarnp: Initial implementation.
|
oskarnp: Initial implementation.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package thread
|
|||||||
/*
|
/*
|
||||||
thread.Pool
|
thread.Pool
|
||||||
Copyright 2022 eisbehr
|
Copyright 2022 eisbehr
|
||||||
Made available under Odin's BSD-3 license.
|
Made available under Odin's license.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import "base:intrinsics"
|
import "base:intrinsics"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user