image-util.scm 433 B

12345678910111213141516
  1. ; Part of Scheme 48 1.9. See file COPYING for notices and license.
  2. ; Authors: Richard Kelsey, Jonathan Rees, David Frese, Mike Sperber
  3. (define-enumeration area-type-size
  4. (small large weaks))
  5. ; at least one of these needs to be synchronized with what the linker writes
  6. (define-enumeration image-format
  7. (two-space bibop))
  8. (define (valid-image-format? f)
  9. (enum-case image-format f
  10. ((two-space bibop) #t)
  11. (else #f)))