unsigned compute_file_hash(char *key_value) { unsigned hash_code; unsigned file_index; hash_code = compute_hash(key_value); file_index = hash_code % FILE_SIZE; return(file_index); }