treewide: Replace <name>_cnt by n_<name>s and <name>_cap by allocated_<name>.
[pspp] / src / data / case-tmpfile.h
index a5916249d45fcf04ca55d2845da70ff8ebe618f2..b7078d4cdcb50729d7a77af408e69a7f92934222 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+   Copyright (C) 2007, 2009, 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
 #ifndef DATA_CASE_TMPFILE_H
 #define DATA_CASE_TMPFILE_H 1
 
-#include <data/case.h>
+#include "data/case.h"
 
-struct case_tmpfile *case_tmpfile_create (size_t value_cnt);
+struct caseproto;
+
+struct case_tmpfile *case_tmpfile_create (const struct caseproto *);
 bool case_tmpfile_destroy (struct case_tmpfile *);
 
 bool case_tmpfile_error (const struct case_tmpfile *);
 void case_tmpfile_force_error (struct case_tmpfile *);
 const struct taint *case_tmpfile_get_taint (const struct case_tmpfile *);
 
- bool case_tmpfile_get_values (const struct case_tmpfile *,
+bool case_tmpfile_get_values (const struct case_tmpfile *,
                               casenumber, size_t start_value,
-                              union value[], size_t value_cnt);
+                              union value[], size_t n_values);
 struct ccase *case_tmpfile_get_case (const struct case_tmpfile *, casenumber);
 
 bool case_tmpfile_put_values (struct case_tmpfile *,
                               casenumber, size_t start_value,
-                              const union value[], size_t value_cnt);
+                              const union value[], size_t n_values);
 bool case_tmpfile_put_case (struct case_tmpfile *,
                             casenumber, struct ccase *);