Added "comments" dialog.
[pspp] / src / language / expressions / public.h
index 9a90cef70e8d72f1b12522d7c8fd3c17c57539e2..53781a6797fe7ef88464464104b0600eae434dad 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
-   Written by Ben Pfaff <blp@gnu.org>.
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -35,15 +34,26 @@ struct expression;
 struct ccase;
 struct pool;
 union value;
-
-struct expression *expr_parse (struct dictionary *, enum expr_type);
-struct expression *expr_parse_pool (struct pool *,
-                                    struct dictionary *, enum expr_type);
+struct dataset ;
+struct lexer ;
+
+struct expression *expr_parse (struct lexer *lexer, struct dataset *, enum expr_type);
+struct expression *expr_parse_pool (struct lexer *, 
+                                   struct pool *,
+                                   struct dataset *,
+                                    enum expr_type);
 void expr_free (struct expression *);
 
+struct dataset;
 double expr_evaluate_num (struct expression *, const struct ccase *,
                           int case_idx);
 void expr_evaluate_str (struct expression *, const struct ccase *,
                         int case_idx, char *dst, size_t dst_size);
 
+const struct operation *expr_get_function (size_t idx);
+size_t expr_get_function_cnt (void);
+const char *expr_operation_get_name (const struct operation *);
+const char *expr_operation_get_prototype (const struct operation *);
+int expr_operation_get_arg_cnt (const struct operation *);
+
 #endif /* expr.h */