Rearranged whitespace (and comments) in all the code!
[mmh] / uip / mhlistsbr.c
index 1aac74a..e5fecd6 100644 (file)
@@ -1,4 +1,3 @@
-
 /*
  * mhlistsbr.c -- routines to list information about the
  *             -- contents of MIME messages
@@ -46,15 +45,15 @@ static int list_encoding (CT);
 /*
  * various formats for -list option
  */
-#define        LSTFMT1         "%4s %-5s %-24s %5s %-36s\n"
-#define        LSTFMT2a        "%4d "
-#define        LSTFMT2b        "%-5s %-24.24s "
-#define        LSTFMT2c1       "%5lu"
-#define        LSTFMT2c2       "%4lu%c"
-#define        LSTFMT2c3       "huge "
-#define        LSTFMT2c4       "     "
-#define        LSTFMT2d1       " %-36.36s"
-#define        LSTFMT2d2       "\t     %-65.65s\n"
+#define LSTFMT1    "%4s %-5s %-24s %5s %-36s\n"
+#define LSTFMT2a   "%4d "
+#define LSTFMT2b   "%-5s %-24.24s "
+#define LSTFMT2c1  "%5lu"
+#define LSTFMT2c2  "%4lu%c"
+#define LSTFMT2c3  "huge "
+#define LSTFMT2c4  "     "
+#define LSTFMT2d1  " %-36.36s"
+#define LSTFMT2d2  "\t     %-65.65s\n"
 
 
 /*
@@ -64,17 +63,17 @@ static int list_encoding (CT);
 void
 list_all_messages (CT *cts, int headers, int realsize, int verbose, int debug)
 {
-    CT ct, *ctp;
+       CT ct, *ctp;
 
-    if (headers)
-       printf (LSTFMT1, "msg", "part", "type/subtype", "size", "description");
+       if (headers)
+               printf (LSTFMT1, "msg", "part", "type/subtype", "size", "description");
 
-    for (ctp = cts; *ctp; ctp++) {
-       ct = *ctp;
-       list_single_message (ct, realsize, verbose, debug);
-    }
+       for (ctp = cts; *ctp; ctp++) {
+               ct = *ctp;
+               list_single_message (ct, realsize, verbose, debug);
+       }
 
-    flush_errors ();
+       flush_errors ();
 }
 
 
@@ -85,16 +84,16 @@ list_all_messages (CT *cts, int headers, int realsize, int verbose, int debug)
 static void
 list_single_message (CT ct, int realsize, int verbose, int debug)
 {
-    if (type_ok (ct, 1)) {
-       umask (ct->c_umask);
-       list_switch (ct, 1, realsize, verbose, debug);
-       if (ct->c_fp) {
-           fclose (ct->c_fp);
-           ct->c_fp = NULL;
+       if (type_ok (ct, 1)) {
+               umask (ct->c_umask);
+               list_switch (ct, 1, realsize, verbose, debug);
+               if (ct->c_fp) {
+                       fclose (ct->c_fp);
+                       ct->c_fp = NULL;
+               }
+               if (ct->c_ceclosefnx)
+                       (*ct->c_ceclosefnx) (ct);
        }
-       if (ct->c_ceclosefnx)
-           (*ct->c_ceclosefnx) (ct);
-    }
 }
 
 
@@ -105,46 +104,46 @@ list_single_message (CT ct, int realsize, int verbose, int debug)
 int
 list_switch (CT ct, int toplevel, int realsize, int verbose, int debug)
 {
-    switch (ct->c_type) {
-       case CT_MULTIPART:
-           return list_multi (ct, toplevel, realsize, verbose, debug);
-           break;
-
-       case CT_MESSAGE:
-           switch (ct->c_subtype) {
-               case MESSAGE_PARTIAL:
-                   return list_partial (ct, toplevel, realsize, verbose, debug);
-                   break;
-
-               case MESSAGE_EXTERNAL:
-                   return list_external (ct, toplevel, realsize, verbose, debug);
-                   break;
-
-               case MESSAGE_RFC822:
+       switch (ct->c_type) {
+               case CT_MULTIPART:
+                       return list_multi (ct, toplevel, realsize, verbose, debug);
+                       break;
+
+               case CT_MESSAGE:
+                       switch (ct->c_subtype) {
+                               case MESSAGE_PARTIAL:
+                                       return list_partial (ct, toplevel, realsize, verbose, debug);
+                                       break;
+
+                               case MESSAGE_EXTERNAL:
+                                       return list_external (ct, toplevel, realsize, verbose, debug);
+                                       break;
+
+                               case MESSAGE_RFC822:
+                               default:
+                                       return list_content (ct, toplevel, realsize, verbose, debug);
+                                       break;
+                       }
+                       break;
+
+               case CT_TEXT:
+               case CT_AUDIO:
+               case CT_IMAGE:
+               case CT_VIDEO:
+                       return list_content (ct, toplevel, realsize, verbose, debug);
+                       break;
+
+               case CT_APPLICATION:
+                       return list_application (ct, toplevel, realsize, verbose, debug);
+                       break;
+
                default:
-                   return list_content (ct, toplevel, realsize, verbose, debug);
-                   break;
-           }
-           break;
-
-       case CT_TEXT:
-       case CT_AUDIO:
-       case CT_IMAGE:
-       case CT_VIDEO:
-           return list_content (ct, toplevel, realsize, verbose, debug);
-           break;
-
-       case CT_APPLICATION:
-           return list_application (ct, toplevel, realsize, verbose, debug);
-           break;
-
-       default:
-           /* list_debug (ct); */
-           adios (NULL, "unknown content type %d", ct->c_type);
-           break;
-    }
-
-    return 0;  /* NOT REACHED */
+                       /* list_debug (ct); */
+                       adios (NULL, "unknown content type %d", ct->c_type);
+                       break;
+       }
+
+       return 0;  /* NOT REACHED */
 }
 
 
@@ -157,73 +156,73 @@ list_switch (CT ct, int toplevel, int realsize, int verbose, int debug)
 int
 list_content (CT ct, int toplevel, int realsize, int verbose, int debug)
 {
-    unsigned long size;
-    char *cp, buffer[BUFSIZ];
-    CI ci = &ct->c_ctinfo;
+       unsigned long size;
+       char *cp, buffer[BUFSIZ];
+       CI ci = &ct->c_ctinfo;
 
-    printf (toplevel > 0 ? LSTFMT2a : toplevel < 0 ? "part " : "     ",
-           atoi (r1bindex (empty (ct->c_file), '/')));
-    snprintf (buffer, sizeof(buffer), "%s/%s", empty (ci->ci_type),
+       printf (toplevel > 0 ? LSTFMT2a : toplevel < 0 ? "part " : "     ",
+               atoi (r1bindex (empty (ct->c_file), '/')));
+       snprintf (buffer, sizeof(buffer), "%s/%s", empty (ci->ci_type),
                empty (ci->ci_subtype));
-    printf (LSTFMT2b, empty (ct->c_partno), buffer);
-
-    if (ct->c_cesizefnx && realsize)
-       size = (*ct->c_cesizefnx) (ct);
-    else
-       size = ct->c_end - ct->c_begin;
-
-    /* find correct scale for size (Kilo/Mega/Giga/Tera) */
-    for (cp = " KMGT"; size > 9999; size >>= 10)
-       if (!*++cp)
-           break;
-
-    /* print size of this body part */
-    switch (*cp) {
-        case ' ':
-           if (size > 0 || ct->c_encoding != CE_EXTERNAL)
-               printf (LSTFMT2c1, size);
-           else
-               printf (LSTFMT2c4);
-           break;
-
-       default:
-           printf (LSTFMT2c2, size, *cp);
-           break;
-
-       case '\0':
-           printf (LSTFMT2c3);
-    }
-
-    /* print Content-Description */
-    if (ct->c_descr) {
-       char *dp;
-
-       dp = trimcpy (cp = add (ct->c_descr, NULL));
-       free (cp);
-       printf (LSTFMT2d1, dp);
-       free (dp);
-    }
-
-    printf ("\n");
-
-    /*
-     * If verbose, print any RFC-822 comments in the
-     * Content-Type line.
-     */
-    if (verbose && ci->ci_comment) {
-       char *dp;
-
-       dp = trimcpy (cp = add (ci->ci_comment, NULL));
-       free (cp);
-       snprintf (buffer, sizeof(buffer), "(%s)", dp);
-       free (dp);
-       printf (LSTFMT2d2, buffer);
-    }
-
-    if (debug)
-       list_debug (ct);
-
-    return OK;
+       printf (LSTFMT2b, empty (ct->c_partno), buffer);
+
+       if (ct->c_cesizefnx && realsize)
+               size = (*ct->c_cesizefnx) (ct);
+       else
+               size = ct->c_end - ct->c_begin;
+
+       /* find correct scale for size (Kilo/Mega/Giga/Tera) */
+       for (cp = " KMGT"; size > 9999; size >>= 10)
+               if (!*++cp)
+                       break;
+
+       /* print size of this body part */
+       switch (*cp) {
+               case ' ':
+                       if (size > 0 || ct->c_encoding != CE_EXTERNAL)
+                               printf (LSTFMT2c1, size);
+                       else
+                               printf (LSTFMT2c4);
+                       break;
+
+               default:
+                       printf (LSTFMT2c2, size, *cp);
+                       break;
+
+               case '\0':
+                       printf (LSTFMT2c3);
+       }
+
+       /* print Content-Description */
+       if (ct->c_descr) {
+               char *dp;
+
+               dp = trimcpy (cp = add (ct->c_descr, NULL));
+               free (cp);
+               printf (LSTFMT2d1, dp);
+               free (dp);
+       }
+
+       printf ("\n");
+
+       /*
+        * If verbose, print any RFC-822 comments in the
+        * Content-Type line.
+        */
+       if (verbose && ci->ci_comment) {
+               char *dp;
+
+               dp = trimcpy (cp = add (ci->ci_comment, NULL));
+               free (cp);
+               snprintf (buffer, sizeof(buffer), "(%s)", dp);
+               free (dp);
+               printf (LSTFMT2d2, buffer);
+       }
+
+       if (debug)
+               list_debug (ct);
+
+       return OK;
 }
 
 
@@ -234,64 +233,64 @@ list_content (CT ct, int toplevel, int realsize, int verbose, int debug)
 static int
 list_debug (CT ct)
 {
-    char **ap, **ep;
-    CI ci = &ct->c_ctinfo;
+       char **ap, **ep;
+       CI ci = &ct->c_ctinfo;
 
-    fflush (stdout);
-    fprintf (stderr, "  partno \"%s\"\n", empty (ct->c_partno));
+       fflush (stdout);
+       fprintf (stderr, "  partno \"%s\"\n", empty (ct->c_partno));
 
-    /* print MIME-Version line */
-    if (ct->c_vrsn)
-       fprintf (stderr, "  %s:%s\n", VRSN_FIELD, ct->c_vrsn);
+       /* print MIME-Version line */
+       if (ct->c_vrsn)
+               fprintf (stderr, "  %s:%s\n", VRSN_FIELD, ct->c_vrsn);
 
-    /* print Content-Type line */
-    if (ct->c_ctline)
-       fprintf (stderr, "  %s:%s\n", TYPE_FIELD, ct->c_ctline);
+       /* print Content-Type line */
+       if (ct->c_ctline)
+               fprintf (stderr, "  %s:%s\n", TYPE_FIELD, ct->c_ctline);
 
-    /* print parsed elements of content type */
-    fprintf (stderr, "    type    \"%s\"\n", empty (ci->ci_type));
-    fprintf (stderr, "    subtype \"%s\"\n", empty (ci->ci_subtype));
-    fprintf (stderr, "    comment \"%s\"\n", empty (ci->ci_comment));
-    fprintf (stderr, "    magic   \"%s\"\n", empty (ci->ci_magic));
+       /* print parsed elements of content type */
+       fprintf (stderr, "    type    \"%s\"\n", empty (ci->ci_type));
+       fprintf (stderr, "    subtype \"%s\"\n", empty (ci->ci_subtype));
+       fprintf (stderr, "    comment \"%s\"\n", empty (ci->ci_comment));
+       fprintf (stderr, "    magic   \"%s\"\n", empty (ci->ci_magic));
 
-    /* print parsed parameters attached to content type */
-    fprintf (stderr, "    parameters\n");
-    for (ap = ci->ci_attrs, ep = ci->ci_values; *ap; ap++, ep++)
-       fprintf (stderr, "      %s=\"%s\"\n", *ap, *ep);
+       /* print parsed parameters attached to content type */
+       fprintf (stderr, "    parameters\n");
+       for (ap = ci->ci_attrs, ep = ci->ci_values; *ap; ap++, ep++)
+               fprintf (stderr, "      %s=\"%s\"\n", *ap, *ep);
 
-    /* print internal flags for type/subtype */
-    fprintf (stderr, "    type 0x%x subtype 0x%x params 0x%x\n",
-            ct->c_type, ct->c_subtype,
-            (unsigned int)(unsigned long) ct->c_ctparams);
+       /* print internal flags for type/subtype */
+       fprintf (stderr, "    type 0x%x subtype 0x%x params 0x%x\n",
+                ct->c_type, ct->c_subtype,
+                (unsigned int)(unsigned long) ct->c_ctparams);
 
-    fprintf (stderr, "    showproc  \"%s\"\n", empty (ct->c_showproc));
-    fprintf (stderr, "    termproc  \"%s\"\n", empty (ct->c_termproc));
-    fprintf (stderr, "    storeproc \"%s\"\n", empty (ct->c_storeproc));
+       fprintf (stderr, "    showproc  \"%s\"\n", empty (ct->c_showproc));
+       fprintf (stderr, "    termproc  \"%s\"\n", empty (ct->c_termproc));
+       fprintf (stderr, "    storeproc \"%s\"\n", empty (ct->c_storeproc));
 
-    /* print transfer encoding information */
-    if (ct->c_celine)
-       fprintf (stderr, "  %s:%s", ENCODING_FIELD, ct->c_celine);
+       /* print transfer encoding information */
+       if (ct->c_celine)
+               fprintf (stderr, "  %s:%s", ENCODING_FIELD, ct->c_celine);
 
-    /* print internal flags for transfer encoding */
-    fprintf (stderr, "    transfer encoding 0x%x params 0x%x\n",
-            ct->c_encoding, (unsigned int)(unsigned long) ct->c_cefile);
+       /* print internal flags for transfer encoding */
+       fprintf (stderr, "    transfer encoding 0x%x params 0x%x\n",
+                ct->c_encoding, (unsigned int)(unsigned long) ct->c_cefile);
 
-    /* print Content-ID */
-    if (ct->c_id)
-       fprintf (stderr, "  %s:%s", ID_FIELD, ct->c_id);
+       /* print Content-ID */
+       if (ct->c_id)
+               fprintf (stderr, "  %s:%s", ID_FIELD, ct->c_id);
 
-    /* print Content-Description */
-    if (ct->c_descr)
-       fprintf (stderr, "  %s:%s", DESCR_FIELD, ct->c_descr);
+       /* print Content-Description */
+       if (ct->c_descr)
+               fprintf (stderr, "  %s:%s", DESCR_FIELD, ct->c_descr);
 
-    fprintf (stderr, "    read fp 0x%x file \"%s\" begin %ld end %ld\n",
-            (unsigned int)(unsigned long) ct->c_fp, empty (ct->c_file),
-            ct->c_begin, ct->c_end);
+       fprintf (stderr, "    read fp 0x%x file \"%s\" begin %ld end %ld\n",
+               (unsigned int)(unsigned long) ct->c_fp, empty (ct->c_file),
+               ct->c_begin, ct->c_end);
 
-    /* print more information about transfer encoding */
-    list_encoding (ct);
+       /* print more information about transfer encoding */
+       list_encoding (ct);
 
-    return OK;
+       return OK;
 }
 
 #undef empty
@@ -304,21 +303,21 @@ list_debug (CT ct)
 static int
 list_multi (CT ct, int toplevel, int realsize, int verbose, int debug)
 {
-    struct multipart *m = (struct multipart *) ct->c_ctparams;
-    struct part *part;
+       struct multipart *m = (struct multipart *) ct->c_ctparams;
+       struct part *part;
 
-    /* list the content for toplevel of this multipart */
-    list_content (ct, toplevel, realsize, verbose, debug);
+       /* list the content for toplevel of this multipart */
+       list_content (ct, toplevel, realsize, verbose, debug);
 
-    /* now list for all the subparts */
-    for (part = m->mp_parts; part; part = part->mp_next) {
-       CT p = part->mp_part;
+       /* now list for all the subparts */
+       for (part = m->mp_parts; part; part = part->mp_next) {
+               CT p = part->mp_part;
 
-       if (part_ok (p, 1) && type_ok (p, 1))
-           list_switch (p, 0, realsize, verbose, debug);
-    }
+               if (part_ok (p, 1) && type_ok (p, 1))
+                       list_switch (p, 0, realsize, verbose, debug);
+       }
 
-    return OK;
+       return OK;
 }
 
 
@@ -329,17 +328,17 @@ list_multi (CT ct, int toplevel, int realsize, int verbose, int debug)
 static int
 list_partial (CT ct, int toplevel, int realsize, int verbose, int debug)
 {
-    struct partial *p = (struct partial *) ct->c_ctparams;
-
-    list_content (ct, toplevel, realsize, verbose, debug);
-    if (verbose) {
-       printf ("\t     [message %s, part %d", p->pm_partid, p->pm_partno);
-       if (p->pm_maxno)
-           printf (" of %d", p->pm_maxno);
-       printf ("]\n");
-    }
+       struct partial *p = (struct partial *) ct->c_ctparams;
+
+       list_content (ct, toplevel, realsize, verbose, debug);
+       if (verbose) {
+               printf ("\t     [message %s, part %d", p->pm_partid, p->pm_partno);
+               if (p->pm_maxno)
+                       printf (" of %d", p->pm_maxno);
+               printf ("]\n");
+       }
 
-    return OK;
+       return OK;
 }
 
 
@@ -350,45 +349,45 @@ list_partial (CT ct, int toplevel, int realsize, int verbose, int debug)
 static int
 list_external (CT ct, int toplevel, int realsize, int verbose, int debug)
 {
-    struct exbody *e = (struct exbody *) ct->c_ctparams;
-
-    /*
-     * First list the information for the
-     * message/external content itself.
-     */
-    list_content (ct, toplevel, realsize, verbose, debug);
-
-    if (verbose) {
-       if (e->eb_name)
-           printf ("\t     name=\"%s\"\n", e->eb_name);
-       if (e->eb_dir)
-           printf ("\t     directory=\"%s\"\n", e->eb_dir);
-       if (e->eb_site)
-           printf ("\t     site=\"%s\"\n", e->eb_site);
-       if (e->eb_server)
-           printf ("\t     server=\"%s\"\n", e->eb_server);
-       if (e->eb_subject)
-           printf ("\t     subject=\"%s\"\n", e->eb_subject);
-
-       /* This must be defined */
-       printf     ("\t     access-type=\"%s\"\n", e->eb_access);
-
-       if (e->eb_mode)
-           printf ("\t     mode=\"%s\"\n", e->eb_mode);
-       if (e->eb_permission)
-           printf ("\t     permission=\"%s\"\n", e->eb_permission);
-
-       if (e->eb_flags == NOTOK)
-           printf ("\t     [service unavailable]\n");
-    }
-
-    /*
-     * Now list the information for the external content
-     * to which this content points.
-     */
-    list_content (e->eb_content, 0, realsize, verbose, debug);
-
-    return OK;
+       struct exbody *e = (struct exbody *) ct->c_ctparams;
+
+       /*
+        * First list the information for the
+        * message/external content itself.
+        */
+       list_content (ct, toplevel, realsize, verbose, debug);
+
+       if (verbose) {
+               if (e->eb_name)
+                       printf ("\t     name=\"%s\"\n", e->eb_name);
+               if (e->eb_dir)
+                       printf ("\t     directory=\"%s\"\n", e->eb_dir);
+               if (e->eb_site)
+                       printf ("\t     site=\"%s\"\n", e->eb_site);
+               if (e->eb_server)
+                       printf ("\t     server=\"%s\"\n", e->eb_server);
+               if (e->eb_subject)
+                       printf ("\t     subject=\"%s\"\n", e->eb_subject);
+
+               /* This must be defined */
+               printf("\t     access-type=\"%s\"\n", e->eb_access);
+
+               if (e->eb_mode)
+                       printf ("\t     mode=\"%s\"\n", e->eb_mode);
+               if (e->eb_permission)
+                       printf ("\t     permission=\"%s\"\n", e->eb_permission);
+
+               if (e->eb_flags == NOTOK)
+                       printf ("\t     [service unavailable]\n");
+       }
+
+       /*
+        * Now list the information for the external content
+        * to which this content points.
+        */
+       list_content (e->eb_content, 0, realsize, verbose, debug);
+
+       return OK;
 }
 
 
@@ -399,16 +398,16 @@ list_external (CT ct, int toplevel, int realsize, int verbose, int debug)
 static int
 list_application (CT ct, int toplevel, int realsize, int verbose, int debug)
 {
-    list_content (ct, toplevel, realsize, verbose, debug);
-    if (verbose) {
-       char **ap, **ep;
-       CI ci = &ct->c_ctinfo;
+       list_content (ct, toplevel, realsize, verbose, debug);
+       if (verbose) {
+               char **ap, **ep;
+               CI ci = &ct->c_ctinfo;
 
-       for (ap = ci->ci_attrs, ep = ci->ci_values; *ap; ap++, ep++)
-           printf ("\t     %s=\"%s\"\n", *ap, *ep);
-    }
+               for (ap = ci->ci_attrs, ep = ci->ci_values; *ap; ap++, ep++)
+                       printf ("\t     %s=\"%s\"\n", *ap, *ep);
+       }
 
-    return OK;
+       return OK;
 }
 
 
@@ -420,12 +419,12 @@ list_application (CT ct, int toplevel, int realsize, int verbose, int debug)
 static int
 list_encoding (CT ct)
 {
-    CE ce;
+       CE ce;
 
-    if ((ce = ct->c_cefile))
-       fprintf (stderr, "    decoded fp 0x%x file \"%s\"\n",
-                (unsigned int)(unsigned long) ce->ce_fp,
-                ce->ce_file ? ce->ce_file : "");
+       if ((ce = ct->c_cefile))
+               fprintf (stderr, "    decoded fp 0x%x file \"%s\"\n",
+                       (unsigned int)(unsigned long) ce->ce_fp,
+                       ce->ce_file ? ce->ce_file : "");
 
-    return OK;
+       return OK;
 }