about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTMIME.h
diff options
context:
space:
mode:
Diffstat (limited to 'WWW/Library/Implementation/HTMIME.h')
-rw-r--r--WWW/Library/Implementation/HTMIME.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/WWW/Library/Implementation/HTMIME.h b/WWW/Library/Implementation/HTMIME.h
index 88130d70..ac0a15c6 100644
--- a/WWW/Library/Implementation/HTMIME.h
+++ b/WWW/Library/Implementation/HTMIME.h
@@ -1,24 +1,24 @@
 /*                   /Net/dxcern/userd/timbl/hypertext/WWW/Library/Implementation/HTMIME.html
                                        MIME PARSER
-                                             
-   The MIME parser stream presents a MIME document. It recursively invokes the format
+
+   The MIME parser stream presents a MIME document.  It recursively invokes the format
    manager to handle embedded formats.
-   
+
    As well as stripping off and parsing the headers, the MIME parser has to parse any
    weirld MIME encodings it may meet within the body parts of messages, and must deal with
    multipart messages.
-   
+
    This module is implemented to the level necessary for operation with WWW, but is not
    currently complete for any arbitrary MIME message.
-   
+
    Check the source for latest additions to functionality.
-   
+
    The MIME parser is complicated by the fact that WWW allows real binary to be sent, not
-   ASCII encoded.  Therefore the netascii decoding is included in this module. One cannot
-   layer it by converting first from Net to local text, then decoding it. Of course, for
+   ASCII encoded.  Therefore the netascii decoding is included in this module.  One cannot
+   layer it by converting first from Net to local text, then decoding it.  Of course, for
    local files, the net ascii decoding is not needed.  There are therefore two creation
    routines.
-   
+
  */
 #ifndef HTMIME_H
 #define HTMIME_H
@@ -39,7 +39,7 @@ extern void HTMIME_TrimDoubleQuotes PARAMS((
 /*
 
   INPUT: LOCAL TEXT
-  
+
  */
 extern HTStream * HTMIMEConvert PARAMS((HTPresentation * pres,
                                         HTParentAnchor * anchor,
@@ -47,7 +47,7 @@ extern HTStream * HTMIMEConvert PARAMS((HTPresentation * pres,
 /*
 
   INPUT: NET ASCII
-  
+
  */
 extern HTStream * HTNetMIME PARAMS((HTPresentation * pres,
                                         HTParentAnchor * anchor,
@@ -57,7 +57,7 @@ extern HTStream * HTNetMIME PARAMS((HTPresentation * pres,
 /*
 
   For handling Japanese headers.
-  
+
 */
 extern void HTmmdec_base64 PARAMS((
 	char *	t,
> 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236