]>
diplodocus.org Git - nmh/blob - sbr/print_sw.c
1 /* print_sw.c -- print switches
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
12 print_sw (const char *substr
, const struct swit
*swp
, char *prefix
, FILE *fp
)
21 for (; swp
->sw
; swp
++) {
22 /* null matches all strings */
23 if (!*substr
|| (ssequal (substr
, swp
->sw
) && len
>= swp
->minchars
)) {
26 if ((sp
= (&swp
[1])->sw
)) {
27 if (!*substr
&& sp
[0] == 'n' && sp
[1] == 'o' &&
28 strcmp (&sp
[2], swp
->sw
) == 0 && (
29 ((&swp
[1])->minchars
== 0 && swp
->minchars
== 0) ||
30 ((&swp
[1])->minchars
== (swp
->minchars
) + 2)))
34 if (swp
->minchars
> 0) {
41 for (cp1
= swp
->sw
, i
= 0; i
< swp
->minchars
; i
++)
44 while ((*cp
++ = *cp1
++));
45 fprintf (fp
, " %s%s\n", prefix
, buf
);
48 fprintf(fp
, optno
? " %s[no]%s\n" : " %s%s\n",
52 swp
++; /* skip -noswitch */