source: app/src/common/main_template.cc @ 25ae32e

help
Last change on this file since 25ae32e was 25ae32e, checked in by obrebski <obrebski@…>, 16 years ago

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@4 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

  • Property mode set to 100644
File size: 252 bytes
Line 
1#include <stdlib.h>
2
3#include "common.h"
4
5main(int argc, char* argv[])
6{
7  gengetopt_args_info args;
8
9  if(cmdline_parser(argc,argv,&args) != 0)
10    exit(1);
11 
12  process_common_options(args);
13
14  //
15  // TU KOD
16  //
17
18  cmdline_parser_free(&args);
19 
20}
Note: See TracBrowser for help on using the repository browser.