
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>
11 строки
240 B
C
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 */
|