]> git.sur5r.net Git - cc65/blobdiff - src/cc65/symtab.h
Export the label symbol table
[cc65] / src / cc65 / symtab.h
index 39782d6abe6f70ac50ffc90b6798200a32f5e2bd..cd736ec1ee62aef8d98fbc1eaef435b9d6f2f6c7 100644 (file)
@@ -136,6 +136,8 @@ SymEntry* FindTagSym (const char* Name);
 SymEntry* FindStructField (const Type* TypeArray, const char* Name);
 /* Find a struct field in the fields list */
 
+unsigned short FindSPAdjustment (const char* Name);
+/* Search for an entry in the table of SP adjustments */
 
 
 /*****************************************************************************/
@@ -176,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 */