Next: Package License, Previous: ascii, Up: Top [Contents][Index]
Preprocessor macro used to define pointer variables initialised with a cast expression. It expands to:
POINTER_TYPE * POINTER_NAME = (POINTER_TYPE *) (EXPRESSION)
For example, the macro use:
CCMEM_PC(ccmem_descriptor_test_failure_t, C, _C);
expands into:
ccmem_descriptor_test_failure_t * C = \ (ccmem_descriptor_test_failure_t *) (_C);
Preprocessor macro that is meant to expand into an attribute declaration. If the symbol
__GNUC__
is defined, the expansion is:
__attribute__((__unused__))
otherwise the expansion is the empty string.
Next: Package License, Previous: ascii, Up: Top [Contents][Index]
This document describes version 0.2.2-devel.3 of CCMemory.