blob: 90ded8db8e10c3673ed2aa1008a476512e83cfc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef MC__EDIT_COMPLETE_H
#define MC__EDIT_COMPLETE_H
/*** typedefs(not structures) and defined constants **********************************************/
/*** enums ***************************************************************************************/
/*** structures declarations (and typedefs of structures)*****************************************/
/*** global variables defined in .c file *********************************************************/
/*** declarations of public functions ************************************************************/
/* Public function for unit tests */
char *edit_completion_dialog_show (const WEdit * edit, GQueue * compl, int max_width);
void edit_complete_word_cmd (WEdit * edit);
/*** inline functions ****************************************************************************/
#endif /* MC__EDIT_COMPLETE_H */
|