queue_queue

A generic Queue data structure.

Synopsis:

struct queue_queue queue_Queue {
    queue_Element * head ;
    queue_Element * tail ;
};

Data:

queue_Element * head

The first element or head of the queue. If head is NULL, the queue is necessarily empty.

queue_Element * tail

The last element or tail of the queue. If tail is NULL, the queue is necessarily empty.

Library:

libhnm

Description: