unsigned compute_cache_hash(char *key_value) { unsigned hash_code; unsigned cache_index; hash_code = compute_hash(key_value); cache_index = hash_code % CACHE_SIZE; return(cache_index); }