aboutsummaryrefslogtreecommitdiff
path: root/pnm/private/double-byte.scm
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-08-09 02:28:45 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-08-09 02:32:21 +0900
commitf67f8d68b33a5d0b2ae2409a81c30d852a475ebe (patch)
tree25d27ea49614d03dcd2c9bf41ee80a7b23d4a64c /pnm/private/double-byte.scm
parenteea3a41609ab2ac72d19166812e01213de3b0bc3 (diff)
Add `unsafe?` option for image creation procedures
- Add (private bitwise) module and use it - Add (private checker) module and use it - Add (private double-byte) module and use it
Diffstat (limited to 'pnm/private/double-byte.scm')
-rw-r--r--pnm/private/double-byte.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/pnm/private/double-byte.scm b/pnm/private/double-byte.scm
new file mode 100644
index 0000000..fd40336
--- /dev/null
+++ b/pnm/private/double-byte.scm
@@ -0,0 +1,29 @@
+;;; 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 private double-byte)
+ (export split-double-byte combine-bytes)
+ (import (scheme base)
+ (pnm private bitwise))
+ (begin
+ (define (split-double-byte v)
+ (values (arithmetic-shift v -8)
+ (bitwise-and v 255)))
+
+ (define (combine-bytes l r)
+ (bitwise-ior (arithmetic-shift l 8) r))))