//
// aegis - project change supervisor
// Copyright (C) 1999, 2001, 2003-2006, 2008, 2014 Peter Miller
// Copyright (C) 2007 Walter Franzini
//
// 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 3 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, see .
//
#include
static arglex_table_ty argtab[] =
{
{ "-Add_Path_Prefix", arglex_token_path_prefix_add, },
{ "-AEGET", arglex_token_aeget, },
{ "-All", arglex_token_all, },
{ "-ARChive", arglex_token_archive, },
{ "-Ascii_Armor", arglex_token_ascii_armor, },
{ "-Content_Transfer_Encoding", arglex_token_content_transfer_encoding},
{ "-Description_Header", arglex_token_description_header, },
{ "-Entire_Source", arglex_token_entire_source, },
{ "-EXclude_UUID", arglex_token_exclude_uuid, },
{ "-EXclude_VERsion", arglex_token_exclude_version, },
{ "-IGnore_UUID", arglex_token_ignore_uuid, },
{ "-INclude_UUID", arglex_token_exclude_uuid_not, },
{ "-INclude_VERsion", arglex_token_exclude_version_not, },
{ "-Input_Format", arglex_token_input_format, },
{ "-INVentory", arglex_token_inventory, },
{ "-MIssing", arglex_token_missing, },
{ "-Not_Ascii_Armor", arglex_token_ascii_armor_not, },
{ "-Not_COMPATibility", arglex_token_compatibility_not, },
{ "-Not_Description_Header", arglex_token_description_header_not, },
{ "-Not_Entire_Source", arglex_token_entire_source_not, },
{ "-Not_IGnore_UUID", arglex_token_ignore_uuid_not, },
{ "-Not_PATch", arglex_token_patch_not, },
{ "-Not_Trojan", arglex_token_trojan_not, },
{ "-Output_Format", arglex_token_output_format, },
{ "-Partial_Source", arglex_token_entire_source_not, },
{ "-PATch", arglex_token_patch, },
{ "-Path_PREFix_add", arglex_token_path_prefix_add, },
{ "-PENding", arglex_token_pending },
{ "-Receive", arglex_token_receive, },
{ "-REPlay", arglex_token_replay, },
{ "-Send", arglex_token_send, },
{ "-Trojan", arglex_token_trojan, },
ARGLEX_END_MARKER
};
void
arglex3_init(int argc, char **argv)
{
arglex2_init3(argc, argv, argtab);
}
// vim: set ts=8 sw=4 et :