source:
app/src/common/main_template.cc
@
52bccea
| Last change on this file since 52bccea was 25ae32e, checked in by obrebski <obrebski@…>, 18 years ago | |
|---|---|
|
|
| File size: 252 bytes | |
| Line | |
|---|---|
| 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.