blob: d0eb056a77c0a009095c35d39fc60db922290920 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/** \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 */
|