1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
|
| #ifndef _CU_H_
| #define _CU_H_
|
| #ifndef INCLUDES_ADDITION_H_
| #define INCLUDES_ADDITION_H_
|
| #ifdef _cplusplus
|
| extern "C" bool addtion(int a, int b, int*c);
|
| #endif // _cplusplus
| #endif // !INCLUDES_ADDITION_H_
| #endif // !_CU_H_
|
|