X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhoutsbr.c;h=e0a8cfa3f556b291a5f74abbeabed3e23b8a30d3;hp=e3549586521bb40847c17f6a63e2a9e32c7d1de9;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=337338b404931f06f0db2119c9e145e8ca5a9860 diff --git a/uip/mhoutsbr.c b/uip/mhoutsbr.c index e354958..e0a8cfa 100644 --- a/uip/mhoutsbr.c +++ b/uip/mhoutsbr.c @@ -1,11 +1,11 @@ /* - * mhoutsbr.c -- routines to output MIME messages - * -- given a Content structure - * - * 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. - */ +** mhoutsbr.c -- routines to output MIME messages +** -- given a Content structure +** +** 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 @@ -64,15 +64,15 @@ static char nib2b64[0x40+1] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /* - * prototypes - */ +** prototypes +*/ int output_message (CT, char *); int output_message_fp (CT, FILE *, char *); int writeBase64aux (FILE *, FILE *); /* - * static prototypes - */ +** static prototypes +*/ static int output_content (CT, FILE *); static void output_headers (CT, FILE *); static int writeExternalBody (CT, FILE *); @@ -82,10 +82,10 @@ static int writeBase64 (CT, FILE *); /* - * Main routine to output a MIME message contained - * in a Content structure, to a file. Any necessary - * transfer encoding is added. - */ +** Main routine to output a MIME message contained +** in a Content structure, to a file. Any necessary +** transfer encoding is added. +*/ int output_message_fp (CT ct, FILE *fp, char *file) @@ -117,8 +117,8 @@ output_message (CT ct, char *file) /* - * Output a Content structure to a file. - */ +** Output a Content structure to a file. +*/ static int output_content (CT ct, FILE *out) @@ -127,21 +127,21 @@ output_content (CT ct, FILE *out) CI ci = &ct->c_ctinfo; /* - * Output all header fields for this content - */ + ** Output all header fields for this content + */ output_headers (ct, out); /* - * If this is the internal content structure for a - * "message/external", then we are done with the - * headers (since it has no body). - */ + ** If this is the internal content structure for a + ** "message/external", then we are done with the + ** headers (since it has no body). + */ if (ct->c_ctexbody) return OK; /* - * Now output the content bodies. - */ + ** Now output the content bodies. + */ switch (ct->c_type) { case CT_MULTIPART: { @@ -181,8 +181,8 @@ output_content (CT ct, FILE *out) break; /* - * Handle discrete types (text/application/audio/image/video) - */ + ** Handle discrete types (text/application/audio/image/video) + */ default: switch (ct->c_encoding) { case CE_7BIT: @@ -223,8 +223,8 @@ output_content (CT ct, FILE *out) /* - * Output all the header fields for a content - */ +** Output all the header fields for a content +*/ static void output_headers (CT ct, FILE *out) @@ -240,8 +240,8 @@ output_headers (CT ct, FILE *out) /* - * Write the phantom body for access-type "mail-server". - */ +** Write the phantom body for access-type "mail-server". +*/ static int writeExternalBody (CT ct, FILE *out) @@ -309,8 +309,8 @@ writeExternalBody (CT ct, FILE *out) /* - * Output a content without any transfer encoding - */ +** Output a content without any transfer encoding +*/ static int write8Bit (CT ct, FILE *out) @@ -337,8 +337,8 @@ write8Bit (CT ct, FILE *out) /* - * Output a content using quoted-printable - */ +** Output a content using quoted-printable +*/ static int writeQuoted (CT ct, FILE *out) @@ -410,8 +410,8 @@ three_print: /* - * Output a content using base64 - */ +** Output a content using base64 +*/ static int writeBase64 (CT ct, FILE *out)