Get pointer to sentinel */
| 92 | |
| 93 | /* Get pointer to sentinel */ |
| 94 | size_t* getSentinel(void* ptr) |
| 95 | { |
| 96 | return offsetPointer<size_t*>(ptr, -sizeof(size_t)); |
| 97 | } |
| 98 | |
| 99 | /* output */ |
| 100 | #define PPREFIX "MC## " |
no outgoing calls
no test coverage detected