Go to the documentation of this file.
97 if (!(Q ==
NULL) || (Q->head ==
NULL)) {
99 if( Q->head->next == Q->tail )
102 first_cell = Q->head->next;
103 item = first_cell->element;
104 Q->head->next = Q->head->next->next;
108 Q->head->next->prev = Q->head;
char * dequeue(FP_QUEUE_t Q)