15 lines
179 B
C
15 lines
179 B
C
|
|
#ifndef BLINKY_UI_MAIN_H_
|
||
|
|
#define BLINKY_UI_MAIN_H_
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
void ui_main_init(void);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* BLINKY_UI_MAIN_H_ */
|