source:
app/src/common/main_template.cc
@
8338227
Last change on this file since 8338227 was 25ae32e, checked in by obrebski <obrebski@…>, 17 years ago | |
---|---|
|
|
File size: 252 bytes |
Rev | Line | |
---|---|---|
[25ae32e] | 1 | #include <stdlib.h> |
2 | ||
3 | #include "common.h" | |
4 | ||
5 | main(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.