1*f406da36SJiří Techet /* 2*f406da36SJiří Techet * Copyright (c) 1998-2002, Darren Hiebert 3*f406da36SJiří Techet * 4*f406da36SJiří Techet * This source code is released for free distribution under the terms of the 5*f406da36SJiří Techet * GNU General Public License version 2 or (at your option) any later version. 6*f406da36SJiří Techet */ 7*f406da36SJiří Techet 8*f406da36SJiří Techet /* 9*f406da36SJiří Techet * INCLUDE FILES 10*f406da36SJiří Techet */ 11*f406da36SJiří Techet #include "general.h" /* must always come first */ 12*f406da36SJiří Techet 13*f406da36SJiří Techet #include "main_p.h" 14*f406da36SJiří Techet 15*f406da36SJiří Techet 16*f406da36SJiří Techet /* 17*f406da36SJiří Techet * FUNCTION DEFINITIONS 18*f406da36SJiří Techet */ main(int argc,char ** argv)19*f406da36SJiří Techetint main(int argc, char **argv) 20*f406da36SJiří Techet { 21*f406da36SJiří Techet return ctags_cli_main (argc, argv); 22*f406da36SJiří Techet } 23