aboutsummaryrefslogtreecommitdiff
path: root/pnm.scm
diff options
context:
space:
mode:
Diffstat (limited to 'pnm.scm')
-rw-r--r--pnm.scm39
1 files changed, 0 insertions, 39 deletions
diff --git a/pnm.scm b/pnm.scm
deleted file mode 100644
index 46fc730..0000000
--- a/pnm.scm
+++ /dev/null
@@ -1,39 +0,0 @@
-;;; 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)
- (export make-pbm-image
- make-ppm-image
- make-pgm-image
- pnm-image?
- pnm-image-type
- pnm-image-width
- pnm-image-height
- pnm-image-maxval
- pnm-image-ref
- pnm-image-set!
- pnm-image-read
- pnm-parse-error?
- pnm-image-write)
- (import (scheme base)
- (pnm image)
- (pnm pbm)
- (pnm pgm)
- (pnm ppm)
- (pnm read)
- (pnm write)))