Lines Matching refs:COMMAND
55 } COMMAND;
57 COMMAND commands[] = {
75 COMMAND *find_command ();
142 /* Execute a command line. */
147 COMMAND *command;
150 /* Isolate the command word. */
162 command = find_command (word);
164 if (!command)
166 fprintf (stderr, "%s: No such command for FileMan.\n", word);
170 /* Get argument to command, if any. */
177 return ((*(command->func)) (word));
180 /* Look up NAME as the name of a command, and return a pointer to that
181 command. Return a NULL pointer if NAME isn't a command name. */
182 COMMAND *
191 return ((COMMAND *)NULL);
225 complete on command names if this is the first word in the line, or
249 /* If this word is at the start of the line, then it is a command
260 /* Generator function for command completion. STATE lets us
281 command list. */