- some comments
[cparser] / lexer.h
diff --git a/lexer.h b/lexer.h
index 8adcdd9..6ef6568 100644 (file)
--- a/lexer.h
+++ b/lexer.h
@@ -24,6 +24,7 @@
 #include "token_t.h"
 
 extern token_t lexer_token;
+extern bool    allow_dollar_in_symbol;
 
 void lexer_next_token(void);
 
@@ -33,6 +34,8 @@ void lexer_next_preprocessing_token(void);
 void init_lexer(void);
 void exit_lexer(void);
 
+void select_input_encoding(char const* encoding);
+
 void lexer_open_stream(FILE *stream, const char *input_name);
 void lexer_open_buffer(const char *buffer, size_t len, const char *input_name);