CppUTest
AllocationInCFile.h
1 #ifndef ALLOCATIONINCFILE_H
2 #define ALLOCATIONINCFILE_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 extern char* mallocAllocation(void);
9 extern void freeAllocation(void* memory);
10 extern void freeAllocationWithoutMacro(void* memory);
11 
12 #ifdef __cplusplus
13 }
14 #endif
15 
16 #endif