Structure: laListNode_t
typedef struct laListNode_t { struct laListNode_t* next; void* val; } laListNode;
None.