Parent Directory
|
Revision Log
|
Revision Graph
Importing web-site building process.
1 | struct symTab { char *symName; |
2 | char *ucName; |
3 | int useCount; |
4 | struct symTab *next; }; |
5 | typedef struct symTab symTab; |
6 | symTab *symTabHead = NULL; /* Table of variable names */ |
7 | symTab *procTabHead = NULL; /* Table of procedure names */ |
8 | symTab *extTabHead = NULL; /* Table of current external names */ |
9 | int symbolCount = 0; |
10 | int procCount = 0; |
ViewVC Help | |
Powered by ViewVC 1.1.22 |