mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-10 21:42:00 +03:00
758ab591d8
Mostly \file and \brief tag added. Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>
18 lines
316 B
C
18 lines
316 B
C
|
|
/** \file command.h
|
|
* \brief Header: command line widget
|
|
*/
|
|
|
|
#ifndef MC_COMMAND_H
|
|
#define MC_COMMAND_H
|
|
|
|
#include "widget.h"
|
|
|
|
extern WInput *cmdline;
|
|
|
|
WInput *command_new (int y, int x, int len);
|
|
void do_cd_command (char *cmd);
|
|
void command_insert (WInput * in, const char *text, int insert_extra_space);
|
|
|
|
#endif
|