CppUTest
AllocationInCppFile.h
1 #ifndef ALLOCATIONINCPPFILE_H
2 #define ALLOCATIONINCPPFILE_H
3 
4 char* newAllocation();
5 char* newArrayAllocation();
6 
7 char* newAllocationWithoutMacro();
8 char* newArrayAllocationWithoutMacro();
9 
10 #endif