FreeCalypso > hg > freecalypso-sw
annotate rvinterf/ctracedec/main.c @ 859:d32dff865575
ctracedec compiles
| author | Space Falcon <falcon@ivan.Harhan.ORG> |
|---|---|
| date | Sat, 02 May 2015 08:21:21 +0000 |
| parents | |
| children |
| rev | line source |
|---|---|
| 859 | 1 /* |
| 2 * This module contains the main() function for ctracedec | |
| 3 */ | |
| 4 | |
| 5 #include <stdio.h> | |
| 6 #include <stdlib.h> | |
| 7 | |
| 8 char *str2ind_tab_filename; | |
| 9 | |
| 10 main(argc, argv) | |
| 11 char **argv; | |
| 12 { | |
| 13 int i; | |
| 14 | |
| 15 if (argc < 3) { | |
| 16 fprintf(stderr, | |
| 17 "usage: %s str2ind.tab logfile [more log files]\n", | |
| 18 argv[0]); | |
| 19 exit(1); | |
| 20 } | |
| 21 str2ind_tab_filename = argv[1]; | |
| 22 read_str2ind_tab(); | |
| 23 for (i = 2; i < argc; i++) | |
| 24 process_log_file(argv[i]); | |
| 25 exit(0); | |
| 26 } |
