IV extract_iv(hash, key, key_len) { SV **const sv_ptr = hv_fetch(hash, key, key_len, 0); if (sv_ptr == NULL) { croak("Failed to retrieve hash entry '%s'", key); } return SvIV(*sv_ptr); }