diff options
author | David Barksdale <amatus.amongus@gmail.com> | 2012-06-21 19:41:59 -0500 |
---|---|---|
committer | David Barksdale <amatus.amongus@gmail.com> | 2012-06-21 19:41:59 -0500 |
commit | 7b0cf869cf2d112a01abf2acb48de04a1b3641d4 (patch) | |
tree | 18e01e7cf6aee5f73b094a48c46c44dbf2b63693 /src | |
parent | a3df85a1133f10ed8edbdbd1874acc3569762e09 (diff) |
Added missing copyright notices.
Diffstat (limited to 'src')
-rw-r--r-- | src/clojure/foofs/blocks.clj | 15 | ||||
-rw-r--r-- | src/clojure/foofs/crypto.clj | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/src/clojure/foofs/blocks.clj b/src/clojure/foofs/blocks.clj index 210af8d..08becf5 100644 --- a/src/clojure/foofs/blocks.clj +++ b/src/clojure/foofs/blocks.clj @@ -1,3 +1,18 @@ +; Copyright (C) David Barksdale 2012 <amatus.amongus@gmail.com> +; +; foofs is free software: you can redistribute it and/or modify it +; under the terms of the GNU General Public License as published by the +; Free Software Foundation, either version 3 of the License, or +; (at your option) any later version. +; +; foofs is distributed in the hope that it will be useful, but +; WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +; See the GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License along +; with this program. If not, see <http://www.gnu.org/licenses/>. + (ns foofs.blocks (:use foofs.crypto)) diff --git a/src/clojure/foofs/crypto.clj b/src/clojure/foofs/crypto.clj index a7fd60e..e73df20 100644 --- a/src/clojure/foofs/crypto.clj +++ b/src/clojure/foofs/crypto.clj @@ -1,3 +1,18 @@ +; Copyright (C) David Barksdale 2012 <amatus.amongus@gmail.com> +; +; foofs is free software: you can redistribute it and/or modify it +; under the terms of the GNU General Public License as published by the +; Free Software Foundation, either version 3 of the License, or +; (at your option) any later version. +; +; foofs is distributed in the hope that it will be useful, but +; WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +; See the GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License along +; with this program. If not, see <http://www.gnu.org/licenses/>. + (ns foofs.crypto (:use foofs.fuse.bytebuffer) (:import java.security.MessageDigest |