X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhfree.c;h=356a4d7e81cfe7025834bb28a0589596676a5075;hp=b9f15aa7a1e0c8c7c7404486ce1198bd4157cd85;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=337338b404931f06f0db2119c9e145e8ca5a9860 diff --git a/uip/mhfree.c b/uip/mhfree.c index b9f15aa..356a4d7 100644 --- a/uip/mhfree.c +++ b/uip/mhfree.c @@ -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 #include @@ -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)