Reformated comments and long lines
[mmh] / uip / mhfree.c
index b9f15aa..356a4d7 100644 (file)
@@ -1,11 +1,11 @@
 /*
- * mhfree.c -- routines to free the data structures used to
- *          -- represent MIME messages
- *
- * This code is Copyright (c) 2002, by the authors of nmh.  See the
- * COPYRIGHT file in the root directory of the nmh distribution for
- * complete copyright information.
- */
+** mhfree.c -- routines to free the data structures used to
+**          -- represent MIME messages
+**
+** This code is Copyright (c) 2002, by the authors of nmh.  See the
+** COPYRIGHT file in the root directory of the nmh distribution for
+** complete copyright information.
+*/
 
 #include <h/mh.h>
 #include <errno.h>
@@ -16,8 +16,8 @@
 CT *cts = NULL;
 
 /*
- * prototypes
- */
+** prototypes
+*/
 void free_content (CT);
 void free_header (CT);
 void free_ctinfo (CT);
@@ -25,8 +25,8 @@ void free_encoding (CT, int);
 void freects_done (int);
 
 /*
- * static prototypes
- */
+** static prototypes
+*/
 static void free_text (CT);
 static void free_multi (CT);
 static void free_partial (CT);
@@ -34,8 +34,8 @@ static void free_external (CT);
 
 
 /*
- * Primary routine to free a MIME content structure
- */
+** Primary routine to free a MIME content structure
+*/
 
 void
 free_content (CT ct)
@@ -44,8 +44,8 @@ free_content (CT ct)
                return;
 
        /*
-        * free all the header fields
-        */
+       ** free all the header fields
+       */
        free_header (ct);
 
        if (ct->c_partno)
@@ -60,9 +60,9 @@ free_content (CT ct)
        free_ctinfo (ct);
 
        /*
-        * some of the content types have extra
-        * parts which need to be freed.
-        */
+       ** some of the content types have extra
+       ** parts which need to be freed.
+       */
        switch (ct->c_type) {
                case CT_MULTIPART:
                        free_multi (ct);
@@ -123,9 +123,9 @@ free_content (CT ct)
 
 
 /*
- * Free the linked list of header fields
- * for this content.
- */
+** Free the linked list of header fields
+** for this content.
+*/
 
 void
 free_header (CT ct)
@@ -251,9 +251,9 @@ free_external (CT ct)
 
 
 /*
- * Free data structures related to encoding/decoding
- * Content-Transfer-Encodings.
- */
+** Free data structures related to encoding/decoding
+** Content-Transfer-Encodings.
+*/
 
 void
 free_encoding (CT ct, int toplevel)