Home
last modified time | relevance | path

Searched refs:hashtblptr (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/usr.sbin/bootp/common/
H A Dhash.c77 hash_tbl *hashtblptr; in hash_Init() local
83 hashtblptr = (hash_tbl *) malloc(totalsize); in hash_Init()
84 if (hashtblptr) { in hash_Init()
85 bzero((char *) hashtblptr, totalsize); in hash_Init()
86 hashtblptr->size = tablesize; /* Success! */ in hash_Init()
87 hashtblptr->bucketnum = 0; in hash_Init()
88 hashtblptr->member = (hashtblptr->table)[0]; in hash_Init()
91 hashtblptr = NULL; /* Disallow zero-length tables */ in hash_Init()
93 return hashtblptr; /* NULL if failure */ in hash_Init()