hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 00e5b0d6a983333c5d34cfce8df0435a4f51c237
parent 10d09ee6ed4a96c2fc9d07a88bb59cd7790eefff
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon,  2 May 2022 14:16:58 +0200

encoding::pem: add license headers

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Mencoding/pem/+test.ha | 2++
Mencoding/pem/pem.ha | 2++
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/encoding/pem/+test.ha b/encoding/pem/+test.ha @@ -1,3 +1,5 @@ +// License: MPL-2.0 +// (c) 2022 Drew DeVault <sir@cmpwn.com> use bufio; use bytes; use io; diff --git a/encoding/pem/pem.ha b/encoding/pem/pem.ha @@ -1,3 +1,5 @@ +// License: MPL-2.0 +// (c) 2022 Drew DeVault <sir@cmpwn.com> use ascii; use bufio; use encoding::base64;