mc/src/command.h
Mikhail S. Pobolovets 758ab591d8 Simple doxygen description for files in src directory.
Mostly \file and \brief tag added.

Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>
2009-02-10 16:07:59 +02:00

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