mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
19 lines
297 B
C
19 lines
297 B
C
#ifndef CMOCK_TEST_MATH_H_
|
|
#define CMOCK_TEST_MATH_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int add(int a1, int a2);
|
|
int substract(int a1, int a2);
|
|
|
|
/* This function isn't implemented, but still can be mocked. */
|
|
int negate(int n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* CMOCK_TEST_MATH_H_ */
|