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

Add méthode "is_full"

parent 2baac242
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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment