Initialize the hash table implementing a set of F_triple entries corresponding to destination files. */
| 1440 | /* Initialize the hash table implementing a set of F_triple entries |
| 1441 | corresponding to destination files. */ |
| 1442 | extern void |
| 1443 | dest_info_init (struct cp_options *x) |
| 1444 | { |
| 1445 | x->dest_info |
| 1446 | = hash_initialize (DEST_INFO_INITIAL_CAPACITY, |
| 1447 | NULL, |
| 1448 | triple_hash, |
| 1449 | triple_compare, |
| 1450 | triple_free); |
| 1451 | if (! x->dest_info) |
| 1452 | xalloc_die (); |
| 1453 | } |
| 1454 | |
| 1455 | /* Initialize the hash table implementing a set of F_triple entries |
| 1456 | corresponding to source files listed on the command line. */ |
no test coverage detected