FreeCalypso > hg > freecalypso-sw
annotate rvinterf/ctracedec/main.c @ 988:0654212e5c53
doc/Compal-unlock: documented safe flashing of newer fw versions and
cisversion unlocking
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 12 Dec 2015 18:40:56 +0000 |
parents | d32dff865575 |
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 } |