blob: 571443ab67d9a816d8ec7ae9c002d14f577ce5a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef RECEPTION_H
#define RECEPTION_H
#ifdef __cplusplus
extern "C"
{
#endif
void reception_ev(void);
void reception_loop(void);
#ifdef __cplusplus
}
#endif
#endif /* RECEPTION_H */
|