1
1
mc/src/command.h
Pavel Roskin b295faf096 * command.c: (command_insert): New function - insert quoted
text into the command line.
* main.c: Use command_insert() instead of stuff().  This ensures
that the names in the command line are quoted.
Reported by Arpad Biro <biro_arpad@yahoo.com>
2002-09-20 19:59:28 +00:00

11 строки
240 B
C

#ifndef __COMMAND_H
#define __COMMAND_H
extern WInput *cmdline;
WInput *command_new (int y, int x, int len);
void do_cd_command (char *cmd);
void command_insert (WInput * in, char *text, int insert_extra_space);
#endif /* __COMMAND_H */