mirror of https://github.com/MidnightCommander/mc
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 */
|