Lines Matching refs:routine
7 currently no routine to delete an string from a hash table.
148 @subsubsection Write the derived creation routine
149 You must write a routine which will create and initialize an
150 entry in the hash table. This routine is passed as the
154 hash table you are creating, this routine must be written in a
157 The first argument to the creation routine is a pointer to a
159 routine should allocate the right amount of space. Otherwise
163 After allocating space, the creation routine must call the
164 creation routine of the hash table type it is derived from,
168 Finally the creation routine must initialize any local fields
171 Here is a boilerplate example of a creation routine.
172 @var{function_name} is the name of the routine.
175 routine of the hash table type your hash table is derived
208 The creation routine for the linker hash table, which is in
213 routine for a basic hash table.
224 You will want an initialization routine which calls the
225 initialization routine of the hash table you are deriving from
229 You will want a lookup routine which calls the lookup routine
235 You may want a traversal routine. This should just call the
236 traversal routine of the hash table you are deriving from with