| 523 | } |
| 524 | |
| 525 | int map_for_each( map_t tree, process_each_func f, void * param) |
| 526 | { |
| 527 | tree->ret_code = 0; |
| 528 | |
| 529 | if( tree->avl_root ) |
| 530 | process_all( tree, tree->avl_root, f, param); |
| 531 | |
| 532 | return tree->ret_code; |
| 533 | |
| 534 | |
| 535 | } |
| 536 | |
| 537 | int map_first( map_t map, map_iterator_t * it) |
| 538 | { |
no test coverage detected