MCPcopy Create free account
hub / github.com/coreutils/coreutils / hash_init

Function hash_init

src/cp-hash.c:146–155  ·  view source on GitHub ↗

Initialize the hash table. */

Source from the content-addressed store, hash-verified

144
145/* Initialize the hash table. */
146extern void
147hash_init (void)
148{
149 src_to_dest = hash_initialize (INITIAL_TABLE_SIZE, NULL,
150 src_to_dest_hash,
151 src_to_dest_compare,
152 src_to_dest_free);
153 if (src_to_dest == NULL)
154 xalloc_die ();
155}

Callers 3

mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls 1

xalloc_dieFunction · 0.85

Tested by

no test coverage detected