D
dspfun
Keith said:What is? Please provide enough context so we can understand what
you're talking about without seeing the parent article.
Sorry, /this/ points to the following (beginning of a) linked list:
typedef struct node {
struct node *next;
/*payload data goes here.*/
} node;
typedef struct queue {
node *head, *tail;
} queue;