};
static void
-usage (status)
- int status;
+usage (int status)
{
if (status != 0)
fprintf (stderr, _("Try `%s --help' for more information.\n"),
if TABVAL is -1, do nothing. */
static void
-add_tabstop (tabval)
- int tabval;
+add_tabstop (int tabval)
{
if (tabval == -1)
return;
to the list of tabstops. */
static void
-parse_tabstops (stops)
- char *stops;
+parse_tabstops (char *stops)
{
int tabval = -1;
contains only nonzero, ascending values. */
static void
-validate_tabstops (tabs, entries)
- int *tabs;
- int entries;
+validate_tabstops (int *tabs, int entries)
{
int prev_tab = 0;
int i;
Return NULL if there are no more input files. */
static FILE *
-next_file (fp)
- FILE *fp;
+next_file (FILE *fp)
{
static char *prev_file;
char *file;
Read each file in `file_list', in order. */
static void
-expand ()
+expand (void)
{
FILE *fp; /* Input stream. */
int c; /* Each input character. */
}
void
-main (argc, argv)
- int argc;
- char **argv;
+main (int argc, char **argv)
{
int tabval = -1; /* Value of tabstop being read, or -1. */
int c; /* Option character. */