Data Fields | |
int | taille |
Number of elements in the linked list. | |
int(* | corresp )(const void *val1, const void *val2) |
Pointer to the user defined function used to compare two elements. | |
void(* | detruire )(void *donnee) |
Pointer on to the user defined function used to free the element's data memory. | |
ListElmt * | tete |
Pointer to the beginning of the linked list. | |
ListElmt * | queue |
Pointer to the end of the linked list. |
test_list.c, and test_stack.c.
Definition at line 42 of file list.h.