/* * fhist - file history and comparison tools * Copyright (C) 1991-1995, 1997, 1998, 2000, 2002, 2005 Peter Miller; * All rights reserved. * * Derived from a work * Copyright (C) 1990 David I. Bell. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. * * MANIFEST: operating system entry point, and parse arguments */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include short outputflag; short conflictflag; enum { arglex_token_conflicts, arglex_token_debug, arglex_token_failure, arglex_token_ignore, arglex_token_ignore_identical, arglex_token_ignore_identical_not, arglex_token_output, arglex_token_unchanged, arglex_token_verbose, }; static arglex_table_ty argtab[] = { { "-Conflicts", arglex_token_conflicts, }, { "-Debug", arglex_token_debug, }, { "-Failure", arglex_token_failure, }, { "-Ignore", arglex_token_ignore, }, { "-Ignore_Identical_Conflicts", arglex_token_ignore_identical, }, { "-Not_Ignore_Identical_Conflicts", arglex_token_ignore_identical_not, }, { "-Output", arglex_token_output, }, { "-Unchanged", arglex_token_unchanged, }, { "-Verbose", arglex_token_verbose, }, { 0, 0, }, /* end marker */ }; static void usage(void) { char *progname; progname = progname_get(); fprintf(stderr, "usage: %s [