hash_access
static int32_t hash_access __P((HTAB *, ACTION, const DBT *, DBT *));
return (hash_access(hashp, HASH_GET, key, data));
return (hash_access(hashp, flag == R_NOOVERWRITE ?
return (hash_access(hashp, HASH_DELETE, key, NULL));
return (hash_access(hashp, HASH_GET, (DBT *)key, data));
return (hash_access(hashp, flag == R_NOOVERWRITE ?
return (hash_access(hashp, HASH_DELETE, (DBT *)key, NULL));
static int hash_access(HTAB *, ACTION, DBT *, DBT *);