Skip to content

Commit

Permalink
Change to previous integer accepting prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
msindev committed Sep 24, 2018
1 parent 8a5c62a commit a108971
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Circular Queue ADT/CircularQueueADT.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ typedef struct
{
int front;
int rear;
char arr[SIZE][100];
int arr[SIZE];
}queue;

void enqueue(queue *, char[100]);
void enqueue(queue *, int);
char* dequeue(queue *);
void display(queue *);
int isFull(queue *);
Expand All @@ -32,5 +32,3 @@ int isEmpty(queue *q)
}
return 0;
}


0 comments on commit a108971

Please sign in to comment.