/
mc-worker
/
mc-mirror
Обзор
Документация
Войти
/
mc-worker
/
mc-mirror
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/filemanager/command.h
26 строк
898 B
Egmont Koblinger
Refactor color handling
22 фев 2026, 22:24
22 фев 2026, 22:24
a101d98
Код
Авторство
О чём код?
/** \file command.h * \brief Header: command line widget */ #ifndef MC__COMMAND_H #define MC__COMMAND_H #include "lib/widget.h" /*** typedefs(not structures) and defined constants **********************************************/ /*** enums ***************************************************************************************/ /*** structures declarations (and typedefs of structures)*****************************************/ /*** global variables defined in .c file *********************************************************/ extern WInput *cmdline; /*** declarations of public functions ************************************************************/ WInput *command_new (int y, int x, int len); void command_insert (WInput *in, const char *text, gboolean insert_extra_space); /*** inline functions ****************************************************************************/ #endif