aboutsummaryrefslogtreecommitdiff
path: root/pnm
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-08-03 17:59:17 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-08-03 17:59:17 +0900
commitc60a2346011ddbef79192c63e2ffeec07fd0f4fd (patch)
tree58a3c5783d696e07ed98051f50d718a1260eee48 /pnm
parentf7fed1949869f64c4f71936d12c8ae032e8f9005 (diff)
Add licence header
Diffstat (limited to 'pnm')
-rw-r--r--pnm/image.scm18
-rw-r--r--pnm/read.scm18
-rw-r--r--pnm/write.scm18
3 files changed, 54 insertions, 0 deletions
diff --git a/pnm/image.scm b/pnm/image.scm
index 449afc6..ceab0cf 100644
--- a/pnm/image.scm
+++ b/pnm/image.scm
@@ -1,3 +1,21 @@
+;;; R7RS-PNM --- Library for reading and writing PNM (Portable Any Map) files for R7RS
+;;; Copyright © 2024 Masaya Tojo <masaya@tojo.tokyo>
+;;;
+;;; This file is part of R7RS-PNM.
+;;;
+;;; R7RS-PNM is free software: you can redistribute it and/or modify it
+;;; under the terms of the GNU Lesser General Public License as published
+;;; by the Free Software Foundation, either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; R7RS-PNM 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 Lesser General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU Lesser General Public License
+;;; along with R7RS-PNM. If not, see <https://www.gnu.org/licenses/>.
+
(define-library (pnm image)
(export make-image
image?
diff --git a/pnm/read.scm b/pnm/read.scm
index 01e74d0..e88f958 100644
--- a/pnm/read.scm
+++ b/pnm/read.scm
@@ -1,3 +1,21 @@
+;;; R7RS-PNM --- Library for reading and writing PNM (Portable Any Map) files for R7RS
+;;; Copyright © 2024 Masaya Tojo <masaya@tojo.tokyo>
+;;;
+;;; This file is part of R7RS-PNM.
+;;;
+;;; R7RS-PNM is free software: you can redistribute it and/or modify it
+;;; under the terms of the GNU Lesser General Public License as published
+;;; by the Free Software Foundation, either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; R7RS-PNM 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 Lesser General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU Lesser General Public License
+;;; along with R7RS-PNM. If not, see <https://www.gnu.org/licenses/>.
+
(define-library (pnm read)
(export image-read)
(import (scheme base)
diff --git a/pnm/write.scm b/pnm/write.scm
index 038bf82..b41a0d9 100644
--- a/pnm/write.scm
+++ b/pnm/write.scm
@@ -1,3 +1,21 @@
+;;; R7RS-PNM --- Library for reading and writing PNM (Portable Any Map) files for R7RS
+;;; Copyright © 2024 Masaya Tojo <masaya@tojo.tokyo>
+;;;
+;;; This file is part of R7RS-PNM.
+;;;
+;;; R7RS-PNM is free software: you can redistribute it and/or modify it
+;;; under the terms of the GNU Lesser General Public License as published
+;;; by the Free Software Foundation, either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; R7RS-PNM 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 Lesser General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU Lesser General Public License
+;;; along with R7RS-PNM. If not, see <https://www.gnu.org/licenses/>.
+
(define-library (pnm write)
(export image-write)
(import (scheme base)