]> git.sur5r.net Git - cc65/commitdiff
Export the label symbol table
authorLauri Kasanen <cand@gmx.com>
Wed, 10 Apr 2019 11:20:24 +0000 (14:20 +0300)
committergreg-king5 <greg.king5@verizon.net>
Sun, 21 Apr 2019 16:46:03 +0000 (12:46 -0400)
src/cc65/symtab.c
src/cc65/symtab.h

index 56196ea5a3e82b03d441b80a971ef06e75dee932..7adafc413132a655ef22c29273181bad18010623 100644 (file)
@@ -997,6 +997,12 @@ SymTable* GetGlobalSymTab (void)
     return SymTab0;
 }
 
+SymTable* GetLabelSymTab (void)
+/* Return the global symbol table */
+{
+    return LabelTab;
+}
+
 
 
 int SymIsLocal (SymEntry* Sym)
index 0856740cc48789a490a2bf2f79545b7ffc3c63eb..cd736ec1ee62aef8d98fbc1eaef435b9d6f2f6c7 100644 (file)
@@ -178,6 +178,9 @@ SymTable* GetSymTab (void);
 SymTable* GetGlobalSymTab (void);
 /* Return the global symbol table */
 
+SymTable* GetLabelSymTab (void);
+/* Return the label symbol table */
+
 int SymIsLocal (SymEntry* Sym);
 /* Return true if the symbol is defined in the highest lexical level */