-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
85 lines (71 loc) · 2.29 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
*==============================================================================
*345678901234567890123456789012345678901234567890123456789012345678901234567890
*
* File: main.c
* Copyright 2022 David J. Webb
*
* Main program for testing the 'compiling' of MSTS signal scripts
* using bison and lex. The scheme is being developed for possible
* use in ZR.
*
* The order at which programs should be compiled is:
*
* bison -dy -Dparse.trace bas.y
* lex bas.l
* gcc lex.yy.c y.tab.c main.c -lm -o main
*
* Released under licence GPL-3.0-or-later
*
* ZR is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZR is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZR. If not, see <https://www.gnu.org/licenses/>.
*
*==============================================================================
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#if 1
#include "sigscr.h"
#include "y.tab.h"
int load_sigscr_file(char *or_route_dir, char *script_file) ;
int print_sigscr_tree(nodeType *p) ;
int print_sigscr_names(nodeType *p) ;
int replace_var_names(nodeType *p) ;
nodeType *sTree = NULL;
int main(int argc, char *argv[]) {
printf(" Start program main\n\n") ;
#if 1
load_sigscr_file(".","sigscr.dat") ;
#else
load_sigscr_file(".","sigscr_test_1.dat") ;
load_sigscr_file(".","sigscr_test_2.dat") ;
load_sigscr_file(".","sigscr_eur1.dat") ;
#endif
printf("\n REPLACE VARIABLE NAMES\n\n") ;
replace_var_names(sTree) ;
printf("\n PRINT TREE\n\n") ;
print_sigscr_tree(sTree) ;
printf("\n PRINT LIST\n\n") ;
print_sigscr_names(sTree) ;
printf("\n End program main\n\n") ;
return 0;
}
#else
int main(int argc, char *argv[]) {
FILE *yyin ;
yyin = fopen("sigscr.dat", "r");
yylex();
fclose(yyin);
}
#endif