I have a linked list
struct node {
data_t data;
node_t *next;
};
typedef struct {
node_t *head;
node_t *foot;
node_t *curr; // for iterator
unsigned int size;
} list_t;
with this structure, let say I defined a list
list_t* myList;
How can I use GDB to print the whole linked list?