blob: 76a935ae71fc44c8196e5ef57a898ad0d424a1f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* thing.h
*
* Created on: Jul 6, 2018
* Author: jpark
*/
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
void init_thing();
#ifdef __cplusplus
}
#endif /* __cplusplus */
|