| 3710 | } |
| 3711 | |
| 3712 | const hb_container_t* hb_container_get_next(const hb_container_t *last) |
| 3713 | { |
| 3714 | if (last == NULL) |
| 3715 | { |
| 3716 | return hb_containers_first_item; |
| 3717 | } |
| 3718 | return ((hb_container_internal_t*)last)->next; |
| 3719 | } |
| 3720 | |
| 3721 | /********************************************************************** |
| 3722 | * hb_reduce |
no outgoing calls