Sub *first_in_hash(char *name)
/******************************************************************
 * Return Sub who's in string matches the first part of name
 ******************************************************************/
{
return(first_in_list(global_hash[hash_function(name)], name) );
}
Exemple #2
0
static void    *
listGetFirst(UtilList * ul)
{
    Generic_list    l = *(Generic_list *) & ul->hdl;
    reset_to_beginning(l);
    return first_in_list(l);
}