blob: 1cc3986845346434fc72d514bac946f183faf169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef IMPL_BASE_H
#define IMPL_BASE_H
/**
* Initialize impl
*/
void impl_init(void);
/**
* Cleanup impl resources
*/
void impl_cleanup(void);
#endif /* IMPL_BASE_H */
|