Minor changes

This commit is contained in:
KylerSmith 2017-07-17 18:37:58 -07:00
parent 066a69bb43
commit 9af798a677

View File

@ -45,6 +45,9 @@ void create() {
tail = NULL;
}
/**
* Puts an item into the Queue.
*/
void enque(int x) {
if(head == NULL) {
head = (struct node *)malloc(1 * sizeof(struct node));