diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/hashtable.c | 23 | 
1 files changed, 23 insertions, 0 deletions
| diff --git a/lib/hashtable.c b/lib/hashtable.c index 92eaa3881..19d5b158e 100644 --- a/lib/hashtable.c +++ b/lib/hashtable.c @@ -202,6 +202,29 @@ void hdestroy_r(struct hsearch_data *htab)   *   example for functions like hdelete().   */ +/* + * hstrstr_r - return index to entry whose key and/or data contains match + */ +int hstrstr_r(const char *match, int last_idx, ENTRY ** retval, +	      struct hsearch_data *htab) +{ +	unsigned int idx; + +	for (idx = last_idx + 1; idx < htab->size; ++idx) { +		if (htab->table[idx].used <= 0) +			continue; +		if (strstr(htab->table[idx].entry.key, match) || +		    strstr(htab->table[idx].entry.data, match)) { +			*retval = &htab->table[idx].entry; +			return idx; +		} +	} + +	__set_errno(ESRCH); +	*retval = NULL; +	return 0; +} +  int hmatch_r(const char *match, int last_idx, ENTRY ** retval,  	     struct hsearch_data *htab)  { |