Hello,
I'm trying to exchange values in two hashes. These values are lists of
hashes. I tryied to use combination of hv_fetch and hv_store, but it didn't
work:
SV ** temp_loop1;
SV ** temp_loop2;
temp_loop1 = hv_fetch(temp_include,"some_key",strlen("some_key"),0);
temp_loop2 = hv_fetch(param_map[0],"some_key",strlen("some_key"),0);
hv_store(param_map[0],"some_key",strlen("some_key"),*(temp_loop1),0);
After this, there are the same values in temp_loop1 and temp_loop2.
Thanks for any informations
Roman Porizka