Merge branch '2344_fix_line_jump'
[midnight-commander.git] / src / command.h
blobbee1c930c2107afa0366539e84dbed767af69cf5
2 /** \file command.h
3 * \brief Header: command line widget
4 */
6 #ifndef MC_COMMAND_H
7 #define MC_COMMAND_H
9 #include "widget.h"
11 extern WInput *cmdline;
13 WInput *command_new (int y, int x, int len);
14 void do_cd_command (char *cmd);
15 void command_insert (WInput * in, const char *text, int insert_extra_space);
17 #endif