treewide: Replace <name>_cnt by n_<name>s and <name>_cap by allocated_<name>.
[pspp] / src / data / lazy-casereader.h
index c83f39db82637430eabca7b4931ff0b2b8ca93d5..1e0a985865022bc8867551abb58bd7ff7c054d0a 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2007 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
 #define DATA_LAZY_CASEREADER_H 1
 
 #include <stdbool.h>
-#include <data/case.h>
+#include "data/case.h"
 
-struct casereader *lazy_casereader_create (size_t value_cnt,
-                                           casenumber case_cnt,
+struct casereader *lazy_casereader_create (const struct caseproto *,
+                                           casenumber n_cases,
                                            struct casereader *(*) (void *aux),
                                            void *aux,
                                            unsigned long int *serial);