Example #1
0
/*
 * Basic routines
 */
static unsigned long
printer_hash_1 (struct printer *printer)
{
  return_STRING_HASH_1 (printer->key);
}
Example #2
0
static unsigned long
dep_hash_1 (const void *key)
{
    const struct dep *d = key;
    return_STRING_HASH_1 (dep_name (d));
}
Example #3
0
static unsigned long
mv_key_hash_1 (struct multivalued_entry *key)
{
  return_STRING_HASH_1 (key->key);
}