Queue
Creating a new queue
Queue* queue = new_queue();Pushing to the queue
queue_push(queue, (void*) "Hello world");Retrieving the current item from the queue
void* current = current_queue(queue)Jumping to the next element
Freeing the queue
Last updated