Remove RCS keywords, since they no longer work after git migration.
[mmh] / sbr / seq_print.c
1
2 /*
3  * seq_print.c -- Routines to print sequence information.
4  *
5  * This code is Copyright (c) 2002, by the authors of nmh.  See the
6  * COPYRIGHT file in the root directory of the nmh distribution for
7  * complete copyright information.
8  */
9
10 #include <h/mh.h>
11
12 #define empty(s) ((s) ? (s) : "")
13
14 /*
15  * Print all the sequences in a folder
16  */
17 void
18 seq_printall (struct msgs *mp)
19 {
20     int i;
21     char *list;
22
23     for (i = 0; mp->msgattrs[i]; i++) {
24         list = seq_list (mp, mp->msgattrs[i]);
25         printf ("%s%s: %s\n", mp->msgattrs[i],
26             is_seq_private (mp, i) ? " (private)" : "", empty(list));
27     }
28 }
29
30
31 /*
32  * Print a particular sequence in a folder
33  */
34 void
35 seq_print (struct msgs *mp, char *seqname)
36 {
37     int i;
38     char *list;
39
40     /* get the index of sequence */
41     i = seq_getnum (mp, seqname);
42
43     /* get sequence information */
44     list = seq_list (mp, seqname);
45
46     printf ("%s%s: %s\n", seqname,
47         (i == -1) ? "" : is_seq_private(mp, i) ? " (private)" : "", empty(list));
48 }