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