Handle the initial memset() of the declaration specifier struct in parse_declaration_...
[cparser] / lexer.h
diff --git a/lexer.h b/lexer.h
index 35b2fb3..a34d591 100644 (file)
--- a/lexer.h
+++ b/lexer.h
@@ -1,6 +1,6 @@
 /*
  * This file is part of cparser.
- * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
+ * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -34,12 +34,12 @@ 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);
 
-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);
-wide_string_t concat_wide_strings(      const wide_string_t *s1, const wide_string_t *s2);
-wide_string_t concat_wide_string_string(const wide_string_t *s1, const string_t      *s2);
+string_t concat_strings(const string_t *s1, const string_t *s2);
+string_t make_string(const char *str);
 
 #endif