- parsing of __based implemented (more semantic in assignment might be needed)
[cparser] / lexer.h
diff --git a/lexer.h b/lexer.h
index 587b19e..35b2fb3 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);
 
@@ -34,6 +35,7 @@ void init_lexer(void);
 void exit_lexer(void);
 
 void lexer_open_stream(FILE *stream, const char *input_name);
+void lexer_open_buffer(const char *buffer, size_t len, const char *input_name);
 
 string_t      concat_strings(           const string_t      *s1, const string_t      *s2);
 wide_string_t concat_string_wide_string(const string_t      *s1, const wide_string_t *s2);