mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-24 05:16:51 +03:00
e792cffb8d
double underscore. Added #includes for dependent files. * popt.c: Likewise. * popthelp.c: Likewise. * tree.c: Moved a macro from tree.h to here, as it is useless outside tree.c.
13 lines
251 B
C
13 lines
251 B
C
#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
|