mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-06-18 03:14:00 +00:00
d16c27b085
- fixed ANSI (C89) issues, including #418
14 lines
277 B
C
14 lines
277 B
C
#ifndef MOCK_MOCK_H
|
|
#define MOCK_MOCK_H
|
|
|
|
extern int mockMock_Init_Counter;
|
|
extern int mockMock_Verify_Counter;
|
|
extern int mockMock_Destroy_Counter;
|
|
extern int CMockMemFreeFinalCounter;
|
|
|
|
void mockMock_Init(void);
|
|
void mockMock_Verify(void);
|
|
void mockMock_Destroy(void);
|
|
|
|
#endif
|