| 22 |
|
int ndel; /* number of deleted entries */ |
| 23 |
|
} LUTAB; |
| 24 |
|
|
| 25 |
+ |
#undef strcmp |
| 26 |
|
#define LU_SINIT(fk,fd) {lu_shash,strcmp,(void (*)())(fk),\ |
| 27 |
|
(void (*)())(fd),0,NULL,0} |
| 28 |
|
|
| 57 |
|
* The lu_delete routine frees an entry's data (if any) by calling |
| 58 |
|
* the freed member function, but does not free the key field. This |
| 59 |
|
* will be freed later during (or instead of) table reallocation. |
| 60 |
+ |
* It is therefore an error to reuse or do anything with the key |
| 61 |
+ |
* field after calling lu_delete. |
| 62 |
|
* |
| 63 |
|
* The lu_done routine calls the given free function once for each |
| 64 |
|
* assigned table entry (i.e. each entry with an assigned key value). |