mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
1ff8b77f92
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
22 lines
756 B
C
22 lines
756 B
C
/** \file learn.h
|
|
* \brief Header: learn keys module
|
|
*/
|
|
|
|
#ifndef MC__LEARN_H
|
|
#define MC__LEARN_H
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
void learn_keys (void);
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
#endif /* MC__LEARN_H */
|