* hb_list_count ********************************************************************** * Returns the number of items currently in the list *********************************************************************/
| 4116 | * Returns the number of items currently in the list |
| 4117 | *********************************************************************/ |
| 4118 | int hb_list_count( const hb_list_t * l ) |
| 4119 | { |
| 4120 | if (l == NULL) return 0; |
| 4121 | return l->items_count; |
| 4122 | } |
| 4123 | |
| 4124 | /********************************************************************** |
| 4125 | * hb_list_add |
no outgoing calls