| 314 | */ |
| 315 | |
| 316 | void list_print( LIST * l ) |
| 317 | { |
| 318 | LISTITER iter = list_begin( l ), end = list_end( l ); |
| 319 | if ( iter != end ) |
| 320 | { |
| 321 | printf( "%s", object_str( list_item( iter ) ) ); |
| 322 | iter = list_next( iter ); |
| 323 | for ( ; iter != end; iter = list_next( iter ) ) |
| 324 | printf( " %s", object_str( list_item( iter ) ) ); |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | |
| 329 | /* |
no test coverage detected