destructor.h
Provides type definition for destructors, functions responsible for finalising and freeing the memory of a given structure.
- Author: Edward Jones
- Date: 2021-09-17
void
Type of an object destructor.
- Param
o
: Pointer to an object to destroy
typedef void(fun Destructor)(void* o);