lexer: Reimplement for better testability and internationalization.
[pspp-builds.git] / src / data / procedure.h
index bb4dad2b14ac91528c13be0e5455c6bcf7e1f362..ad45a53720052ba9d784d6eb7b1aea27ec175f47 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 1997-9, 2000, 2006, 2007, 2009, 2010 Free Software Foundation, Inc.
+   Copyright (C) 1997-9, 2000, 2006, 2007, 2009, 2010, 2011 Free Software Foundation, Inc.
 
    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
@@ -20,8 +20,8 @@
 #include <time.h>
 #include <stdbool.h>
 
-#include <data/transformations.h>
-#include <libpspp/compiler.h>
+#include "data/transformations.h"
+#include "libpspp/compiler.h"
 
 struct casereader;
 struct dataset;
@@ -82,10 +82,12 @@ bool dataset_end_of_command (struct dataset *);
 struct dictionary *dataset_dict (const struct dataset *ds);
 const struct casereader *dataset_source (const struct dataset *ds);
 
-
 const struct ccase *lagged_case (const struct dataset *ds, int n_before);
 void dataset_need_lag (struct dataset *ds, int n_before);
 
 void dataset_set_callback (struct dataset *ds, void (*cb) (void *), void *);
 
+void dataset_set_default_syntax_encoding (struct dataset *, const char *);
+const char *dataset_get_default_syntax_encoding (const struct dataset *);
+
 #endif /* procedure.h */