Skip to content
Snippets Groups Projects
Commit a9aece4d authored by leo.pellandi's avatar leo.pellandi
Browse files

Update is_full.c

parent 1fd60161
No related branches found
No related tags found
1 merge request!8Draft: Resolve "Add queue_is_full"
bool is_full(queue q){
bool ret = false;
if(q.tail == q.capacity){
ret = true;
}
return ret;
return (q.tail >= q.capacity);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment