int
main (int argc, char **argv)
{
+ int msgnum, *icachesw;
+ bool autosw = false;
/* verbosw defaults to 1 for backward compatibility. */
- int msgnum, *icachesw, autosw = 0, verbosw = 1;
+ bool verbosw = true;
const char *clobbersw = "always";
char *cp, *file = NULL, *outfile = NULL, *folder = NULL;
char *maildir, buf[100], **argp;
done (0);
case AUTOSW:
- autosw++;
+ autosw = true;
continue;
case NAUTOSW:
- autosw = 0;
+ autosw = false;
continue;
case RCACHESW:
continue;
case VERBSW:
- verbosw = 1;
+ verbosw = true;
continue;
case NVERBSW:
- verbosw = 0;
+ verbosw = false;
continue;
case CLOBBERSW:
if (!(cp = *argp++) || *cp == '-')
if (!*cts)
done (1);
- userrs = 1;
+ userrs = true;
SIGNAL (SIGQUIT, quitser);
SIGNAL (SIGPIPE, pipeser);