Update from 1.0.0-stable

This commit is contained in:
Dr. Stephen Henson
2009-05-16 16:18:19 +00:00
parent 48fd490c6d
commit 8d932f6fd7
3 changed files with 19 additions and 0 deletions

View File

@@ -237,3 +237,17 @@ pqueue_next(pitem **item)
return ret;
}
int
pqueue_size(pqueue_s *pq)
{
pitem *item = pq->items;
int count = 0;
while(item != NULL)
{
count++;
item = item->next;
}
return count;
}