X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Flexer%2Fvariable-parser.h;h=66e8efab6c58cd5b17f5e2c0ed0778296f0959de;hb=b525a9596e60d5ae4c6c464b4a426b77ade3dd72;hp=c2a8506464138d76a5ab626f2c61b60a463dd91b;hpb=89c05dfe33f9542e60e66dd383f7a514849b5947;p=pspp diff --git a/src/language/lexer/variable-parser.h b/src/language/lexer/variable-parser.h index c2a8506464..66e8efab6c 100644 --- a/src/language/lexer/variable-parser.h +++ b/src/language/lexer/variable-parser.h @@ -62,15 +62,15 @@ bool parse_var_set_vars (struct lexer *, const struct var_set *, struct variable char *parse_DATA_LIST_var (struct lexer *, const struct dictionary *); bool parse_DATA_LIST_vars (struct lexer *, const struct dictionary *, - char ***names, size_t *cnt, int opts); + char ***names, size_t *n, int opts); bool parse_DATA_LIST_vars_pool (struct lexer *, const struct dictionary *, struct pool *, - char ***names, size_t *cnt, int opts); + char ***names, size_t *n, int opts); bool parse_mixed_vars (struct lexer *, const struct dictionary *dict, - char ***names, size_t *cnt, int opts); + char ***names, size_t *n, int opts); bool parse_mixed_vars_pool (struct lexer *, const struct dictionary *dict, struct pool *, - char ***names, size_t *cnt, int opts); + char ***names, size_t *n, int opts); /* This variable parser supports the unusual situation where set of variables has to be parsed before the associated dictionary is available. Thus,