macro_rules! STACK_DEL {
($stack:expr) => { ... };
}
Expand description
Deallocates the memory used by the stack and sets all pointers to null.
§Parameters
stack
: A mutable reference to the stack to be deallocated.
§Return
This function does not return a value. It deallocates the memory used by the stack and sets all pointers to null.