X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Flexer%2Fvariable-parser.h;h=798851d1a7e33a434dbc45293109e53f4c2a901e;hb=bf3af6fb69dc94a6b3010e11e5d359e9e4abd5ba;hp=7abea0a14beade2d73626e24f16e77f300367a72;hpb=fe8dc2171009e90d2335f159d05f7e6660e24780;p=pspp diff --git a/src/language/lexer/variable-parser.h b/src/language/lexer/variable-parser.h index 7abea0a14b..798851d1a7 100644 --- a/src/language/lexer/variable-parser.h +++ b/src/language/lexer/variable-parser.h @@ -125,5 +125,22 @@ const_var_set_destroy (struct const_var_set *vs) var_set_destroy ( (struct var_set *) vs); } +/* Match a variable. + If the match succeeds, the variable will be placed in VAR. + Returns true if successful */ +bool +lex_match_variable (struct lexer *lexer, const struct dictionary *dict, const struct variable **var); + +struct interaction; + +/* Parse an interaction. + If not successfull return false. + Otherwise, a newly created interaction will be placed in IACT. + It is the caller's responsibility to destroy this interaction. + */ +bool +parse_design_interaction (struct lexer *lexer, const struct dictionary *dict, struct interaction **iact); + + #endif /* variable-parser.h */