X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Flexer%2Fvariable-parser.h;h=f71a778e467841f6213b43c0227fa2c5de874161;hb=c708736bdd0fea4b79f3ee4a10e00c3abb95d9e3;hp=cacb524eacaae2eee4261ed921b643f51931e779;hpb=733a7755a474053cbf3221e1f182012f8ed51720;p=pspp-builds.git diff --git a/src/language/lexer/variable-parser.h b/src/language/lexer/variable-parser.h index cacb524e..f71a778e 100644 --- a/src/language/lexer/variable-parser.h +++ b/src/language/lexer/variable-parser.h @@ -57,17 +57,17 @@ enum struct variable *parse_variable (void); struct variable *parse_dict_variable (const struct dictionary *); -int parse_variables (const struct dictionary *, struct variable ***, size_t *, +bool parse_variables (const struct dictionary *, struct variable ***, size_t *, int opts); -int parse_variables_pool (struct pool *, const struct dictionary *, +bool parse_variables_pool (struct pool *, const struct dictionary *, struct variable ***, size_t *, int opts); -int parse_var_set_vars (const struct var_set *, struct variable ***, size_t *, +bool parse_var_set_vars (const struct var_set *, struct variable ***, size_t *, int opts); -int parse_DATA_LIST_vars (char ***names, size_t *cnt, int opts); -int parse_DATA_LIST_vars_pool (struct pool *, +bool parse_DATA_LIST_vars (char ***names, size_t *cnt, int opts); +bool parse_DATA_LIST_vars_pool (struct pool *, char ***names, size_t *cnt, int opts); -int parse_mixed_vars (char ***names, size_t *cnt, int opts); -int parse_mixed_vars_pool (struct pool *, +bool parse_mixed_vars (char ***names, size_t *cnt, int opts); +bool parse_mixed_vars_pool (struct pool *, char ***names, size_t *cnt, int opts); #endif /* variable-parser.h */