Diff
Not logged in

Differences From Artifact [8cafeaba3c]:

To Artifact [9f75b13a7c]:


225
226
227
228
229
230
231






/*
** Return the number of elements in the bag.
*/
int bag_count(Bag *p){
  return p->cnt;
}












>
>
>
>
>
225
226
227
228
229
230
231
232
233
234
235
236

/*
** Return the number of elements in the bag.
*/
int bag_count(Bag *p){
  return p->cnt;
}

/* 
 * vim:ts=2:sts=2:et:sw=2:ft=c 
 */