diff options
author | Carl Worth <cworth@cworth.org> | 2010-05-25 18:39:43 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-05-25 18:39:43 -0700 |
commit | 5aa7ea08093f727761d424ad090f44b116c8f0bd (patch) | |
tree | 0582896251036b6f836fb79bf970d99f7723a722 /glcpp.h | |
parent | 652fa272ea4bdb9bfe6cd7f8413b3a3b03972987 (diff) |
Remove a bunch of old code and give the static treatment to what's left.
We're no longer using the expansion stack, so its functions can go
along with most of the body of glcpp_parser_lex that was using it.
Diffstat (limited to 'glcpp.h')
-rw-r--r-- | glcpp.h | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -127,16 +127,9 @@ struct glcpp_parser { struct hash_table *defines; string_list_t *active; int space_tokens; - expansion_node_t *expansions; - int just_printed_separator; - int need_newline; skip_node_t *skip_stack; }; -void -glcpp_parser_push_expansion_argument (glcpp_parser_t *parser, - int argument_index); - glcpp_parser_t * glcpp_parser_create (void); |