Classes | |
struct | sNode |
Class Node: Definition. More... | |
Typedefs | |
typedef struct sNode | Node |
Declaration of the Node class as the Node structure. | |
Functions | |
int | Node_numR (Node *thee) |
Return the number of nodes. | |
aNode * | Node_data (Node *thee) |
Return a pointer to the node data. | |
Node * | Node_ctor (Vmem *vmem, int pnumR) |
The node constructor. | |
void | Node_dtor (Node **thee) |
The node destructor. | |
void | Node_memChk (Node *thee) |
Print the exact current malloc usage. |
Node* Node_ctor | ( | Vmem * | vmem, | |
int | pnumR | |||
) |
The node constructor.
vmem | Memory management object | |
pnumR | num of rows in the matrix |
Return a pointer to the node data.
thee | Pointer to a Node allocated memory location |
void Node_dtor | ( | Node ** | thee | ) |
The node destructor.
thee | Pointer to a Node allocated memory location |
void Node_memChk | ( | Node * | thee | ) |
Print the exact current malloc usage.
thee | Pointer to a Node allocated memory location |
int Node_numR | ( | Node * | thee | ) |
Return the number of nodes.
thee | Pointer to a Node allocated memory location |