More package lines

This commit is contained in:
Jeroen van Rijn
2025-10-09 16:11:33 +02:00
parent af189b45f3
commit 248b0fe9e1
17 changed files with 28 additions and 30 deletions
+3 -4
View File
@@ -1,3 +1,6 @@
// package compress is a collection of utilities to aid with other compression packages.
package compress
/*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
Made available under Odin's BSD-3 license.
@@ -6,10 +9,6 @@
Jeroen van Rijn: Initial implementation, optimization.
*/
// package compress is a collection of utilities to aid with other compression packages
package compress
import "core:io"
import "core:bytes"
import "base:runtime"
+1 -1
View File
@@ -1,4 +1,4 @@
// package gzip implements a small GZIP implementation as an example.
// package gzip implements a small GZIP unpacker as an example.
package compress_gzip
/*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.
+1 -1
View File
@@ -1,4 +1,4 @@
// package zlib implements Deflate decompression
// package zlib implements Deflate decompression.
package compress_zlib
/*
Copyright 2021 Jeroen van Rijn <nom@duclavier.com>.