X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fcommand.h;h=32cb3c2ed06c3172cbac76c33f0e4003d37f8afe;hb=9491a8bd354152d3a228e1bf041c7ad6228750d7;hp=5e4671aec78ce8af4ebd54f3e758de9817623072;hpb=ece16c8d0b27fc6c970f6d491b9a3e8a958fde82;p=pspp-builds.git diff --git a/src/language/command.h b/src/language/command.h index 5e4671ae..32cb3c2e 100644 --- a/src/language/command.h +++ b/src/language/command.h @@ -32,8 +32,8 @@ enum cmd_result /* Range of successful return values available for use by agreement between a command and the caller of cmd_parse(). */ - CMD_PRIVATE_FIRST = 4, - CMD_PRIVATE_LAST = 127, + CMD_PRIVATE_FIRST = 4, + CMD_PRIVATE_LAST = 127, /* Various kinds of failures. */ CMD_FAILURE = -1, /* Not executed at all. */ @@ -54,9 +54,12 @@ enum cmd_state }; struct dataset; -struct lexer; +struct lexer; -enum cmd_result cmd_parse (struct lexer *lexer, struct dataset *ds, enum cmd_state); +enum cmd_result cmd_parse_in_state (struct lexer *lexer, struct dataset *ds, + enum cmd_state); + +enum cmd_result cmd_parse (struct lexer *lexer, struct dataset *ds); struct command; const char *cmd_complete (const char *, const struct command **);