Guest User

Untitled

a guest
May 24th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. void Dequeue(void)
  2. {
  3. Obshejitie *p = head;
  4.  
  5. if (head != NULL) {
  6. head = head->next;
  7. if (head == NULL)
  8. tail = NULL;
  9. free(p);
  10. }
  11. }
Add Comment
Please, Sign In to add comment