Circular queue of integers.
int _current
The index for the current item.
unsigned int _max_length
The maximum number of items that fits on the queue.
int _last
The index of the last item.
int * data
Pointer to queue data with allocated space to fit max_size items.
unsigned int length
The current number of items on the queue.
struct cqueue cqueue_t
Circular queue of integers.