Skip to content
Snippets Groups Projects

Draft: Resolve "Add queue_is_full"

Open leo.pellandi requested to merge 6-add-queue_is_full into main
1 file
+ 7
0
Compare changes
  • Side-by-side
  • Inline
is_full.c 0 → 100644
+ 7
0
 
bool is_full(queue q){
 
bool ret = false;
 
if(q.tail == q.capacity){
 
ret = true;
 
}
 
return ret;
 
}
Loading