Removed the space between function names and the opening parenthesis.
[mmh] / sbr / seq_print.c
index e73424e..7cd7c1a 100644 (file)
 ** Print all the sequences in a folder
 */
 void
-seq_printall (struct msgs *mp)
+seq_printall(struct msgs *mp)
 {
        int i;
        char *list;
 
        for (i = 0; mp->msgattrs[i]; i++) {
-               list = seq_list (mp, mp->msgattrs[i]);
-               printf ("%s%s: %s\n", mp->msgattrs[i],
-                       is_seq_private (mp, i) ? " (private)" : "",
+               list = seq_list(mp, mp->msgattrs[i]);
+               printf("%s%s: %s\n", mp->msgattrs[i],
+                       is_seq_private(mp, i) ? " (private)" : "",
                        empty(list));
        }
 }
@@ -32,17 +32,17 @@ seq_printall (struct msgs *mp)
 ** Print a particular sequence in a folder
 */
 void
-seq_print (struct msgs *mp, char *seqname)
+seq_print(struct msgs *mp, char *seqname)
 {
        int i;
        char *list;
 
        /* get the index of sequence */
-       i = seq_getnum (mp, seqname);
+       i = seq_getnum(mp, seqname);
 
        /* get sequence information */
-       list = seq_list (mp, seqname);
+       list = seq_list(mp, seqname);
 
-       printf ("%s%s: %s\n", seqname, (i == -1) ? "" :
+       printf("%s%s: %s\n", seqname, (i == -1) ? "" :
                is_seq_private(mp, i) ? " (private)" : "", empty(list));
 }