]> git.saurik.com Git - bison.git/blobdiff - src/symlist.h
grammar: preserve token declaration order
[bison.git] / src / symlist.h
index 137a7a324c2912a15378308832fe4d8262a66414..a88e73cc65690d9e9f140d68fb9687b35bd63f3c 100644 (file)
@@ -97,6 +97,9 @@ void symbol_list_syms_print (const symbol_list *l, FILE *f);
 /** Prepend \c node to \c list.  */
 symbol_list *symbol_list_prepend (symbol_list *list, symbol_list *node);
 
+/** Append \c node to \c list.  */
+symbol_list *symbol_list_append (symbol_list *list, symbol_list *node);
+
 /** Free \c list, but not the items it contains.  */
 void symbol_list_free (symbol_list *list);