From 362970e8104e0d0db2addfd31bc1bcd485d024b0 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 7 Apr 2019 03:21:32 +0200 Subject: [PATCH] license headers --- base64/base64.v | 4 ++++ base64/base64_test.v | 4 ++++ math/math.v | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/base64/base64.v b/base64/base64.v index 8be132268c..94d11eac23 100644 --- a/base64/base64.v +++ b/base64/base64.v @@ -1,3 +1,7 @@ +// Copyright (c) 2019 Alexander Medvednikov. All rights reserved. +// Use of this source code is governed by an MIT license +// that can be found in the LICENSE file. + module base64 const ( diff --git a/base64/base64_test.v b/base64/base64_test.v index 720c47f651..6137907851 100644 --- a/base64/base64_test.v +++ b/base64/base64_test.v @@ -1,3 +1,7 @@ +// Copyright (c) 2019 Alexander Medvednikov. All rights reserved. +// Use of this source code is governed by an MIT license +// that can be found in the LICENSE file. + import base64 fn test_decode() { diff --git a/math/math.v b/math/math.v index 9d0725d9b2..b216ecd481 100644 --- a/math/math.v +++ b/math/math.v @@ -1,3 +1,7 @@ +// Copyright (c) 2019 Alexander Medvednikov. All rights reserved. +// Use of this source code is governed by an MIT license +// that can be found in the LICENSE file. + module math #include