blob: d53be3150371a19b955b61c9d5ab85dd8cb0aaee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifdef __cplusplus
extern "C" {
#endif
/*! calculate foo(a, b)
*
* @param a the first argument
* @param b the second argument
*
* @return the result
*/
int foo(int a, int b);
#ifdef __cplusplus
}
#endif
|