forked from 3rd-party/fff
11 lines
173 B
C
11 lines
173 B
C
|
|
#ifndef EMBEDDED_CODE
|
|
#define EMBEDDED_CODE
|
|
|
|
void UI_init();
|
|
void UI_greet(char * name);
|
|
void UI_greet_multiple_times(char * name, int times);
|
|
|
|
|
|
#endif /* EMBEDDED_CODE */
|