comparison th_datastruct.c @ 753:64cb2b1777a9

Rename function th_llist_find() to th_llist_find_data().
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 26 Jan 2023 07:23:12 +0200
parents 3710c117b7c7
children d91d1174cfd8
comparison
equal deleted inserted replaced
752:3710c117b7c7 753:64cb2b1777a9
251 251
252 return THERR_OK; 252 return THERR_OK;
253 } 253 }
254 254
255 255
256 th_llist_t * th_llist_find(th_llist_t *list, const void *data) 256 th_llist_t * th_llist_find_data(th_llist_t *list, const void *data)
257 { 257 {
258 th_llist_t *curr = list; 258 th_llist_t *curr = list;
259 259
260 while (curr != NULL) 260 while (curr != NULL)
261 { 261 {