mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 22:29:16 +02:00
7 lines
290 B
Text
7 lines
290 B
Text
|
|
(define-module (chibi mime)
|
|
(export mime-ref assoc-ref mime-header-fold mime-headers->list
|
|
mime-parse-content-type mime-decode-header
|
|
mime-message-fold mime-message->sxml)
|
|
(import (scheme) (chibi base64) (chibi quoted-printable) (chibi io))
|
|
(include "mime.scm"))
|