X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdictionary.h;h=e527dd518fea9a528515aec339a93285f70444f6;hb=64f58bbdab17e4a09b725e713f4f82f567f44076;hp=06e190a3db1ab7d3f88074bd75132ba887820f3f;hpb=1339492699ce7e12c9bf9fa17f9d60a66024cbd1;p=pspp-builds.git diff --git a/src/dictionary.h b/src/dictionary.h index 06e190a3..e527dd51 100644 --- a/src/dictionary.h +++ b/src/dictionary.h @@ -34,7 +34,7 @@ void dict_destroy (struct dictionary *); size_t dict_get_var_cnt (const struct dictionary *); struct variable *dict_get_var (const struct dictionary *, size_t idx); void dict_get_vars (const struct dictionary *, - struct variable ***vars, size_t *cnt, + struct variable ***vars, int *cnt, unsigned exclude_classes); struct variable *dict_create_var (struct dictionary *, const char *, @@ -54,6 +54,7 @@ int dict_contains_var (const struct dictionary *, const struct variable *); void dict_delete_var (struct dictionary *, struct variable *); void dict_delete_vars (struct dictionary *, struct variable *const *, size_t count); +void dict_delete_scratch_vars (struct dictionary *); void dict_reorder_var (struct dictionary *d, struct variable *v, size_t new_index); void dict_reorder_vars (struct dictionary *,