lexer: Reimplement for better testability and internationalization.
[pspp-builds.git] / src / ui / gui / executor.h
index 40925beeae6842887341549d0178342ff3934766..ae363e960bedaed574df0ecb65df3c945c195892 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPPIRE - a graphical user interface for PSPP.
-   Copyright (C) 2007, 2009  Free Software Foundation
+   Copyright (C) 2007, 2009, 2010  Free Software Foundation
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
 
 #include <glib.h>
 
-struct getl_interface;
-
-gboolean execute_syntax (struct getl_interface *sss);
+struct lex_reader;
 
+gboolean execute_syntax (struct lex_reader *);
+gchar *execute_syntax_string (gchar *syntax);
+void execute_const_syntax_string (const gchar *syntax);
 
 #endif