| 313 | |
| 314 | |
| 315 | static void hashstat( struct hash * hp ) |
| 316 | { |
| 317 | struct hashstats stats[ 1 ]; |
| 318 | hashstats_init( stats ); |
| 319 | hashstats_add( stats, hp ); |
| 320 | hashstats_print( stats, hp->name ); |
| 321 | } |
| 322 | |
| 323 | |
| 324 | void hashstats_init( struct hashstats * stats ) |
no test coverage detected