repo.or.cz
/
midnight-commander.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch '2344_fix_line_jump'
[midnight-commander.git]
/
src
/
command.h
blob
bee1c930c2107afa0366539e84dbed767af69cf5
1
2
/** \file command.h
3
* \brief Header: command line widget
4
*/
5
6
#ifndef MC_COMMAND_H
7
#define MC_COMMAND_H
8
9
#include
"widget.h"
10
11
extern
WInput
*
cmdline
;
12
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
);
16
17
#endif