vg4->hash->insert()
Insert a hash into another hash.
SYNTAX
void
vg4->hash->insert(struct VG_Hash *hsh_dest,
struct VG_Hash *hsh_src,
VG_BOOL overwrite)
FUNCTION PARAMETERS
hsh_dest | Destination hash |
hsh_src | Source hash |
overwrite | Whether overwrite existing entries in destination hash |
DESCRIPTION
Insert a hash into another hash.
The entries of hsh_src are inserted into hsh_dest.
Already existing entries in hsh_dest are preserved.
If an entry in hsh_src has the same key as an entry in hsh_dest,
the entry in hsh_dest will be overwritten if overwrite is VG_TRUE.