Define procedures to convert between headers and strings.
authorChris Hanson <org/chris-hanson/cph>
Thu, 20 Jan 2000 17:16:40 +0000 (17:16 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 20 Jan 2000 17:16:40 +0000 (17:16 +0000)
v7/src/imail/imail-core.scm

index 1f73d5bd2d7e3c1911b4e0087d59351ee160a7a4..ee502f1ad983ef39801497a911dd68caa7ccfb3f 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: imail-core.scm,v 1.15 2000/01/19 20:56:50 cph Exp $
+;;; $Id: imail-core.scm,v 1.16 2000/01/20 17:16:40 cph Exp $
 ;;;
 ;;; Copyright (c) 1999-2000 Massachusetts Institute of Technology
 ;;;
 
 (define (header-field-continuation-line? line)
   (and (not (string-null? line))
-       (char-lwsp? (string-ref line 0))))
\ No newline at end of file
+       (char-lwsp? (string-ref line 0))))
+
+(define (string->header-fields string)
+  (lines->header-fields (string->lines string)))
+
+(define (header-fields->string headers)
+  (lines->string (header-fields->lines headers)))
\ No newline at end of file