summaryrefslogtreecommitdiffstats
path: root/linkedlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'linkedlist.h')
-rw-r--r--linkedlist.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/linkedlist.h b/linkedlist.h
index 0f061b59..cdfc2872 100644
--- a/linkedlist.h
+++ b/linkedlist.h
@@ -56,5 +56,6 @@ rsRetVal llInit(linkedList_t *pThis, rsRetVal (*pEltDestructor)(void*), rsRetVal
rsRetVal llDestroy(linkedList_t *pThis);
rsRetVal llGetNextElt(linkedList_t *pThis, linkedListCookie_t *ppElt, void **ppUsr);
rsRetVal llAppend(linkedList_t *pThis, void *pKey, void *pData);
+rsRetVal llFind(linkedList_t *pThis, void *pKey, void **ppData);
#endif /* #ifndef LINKEDLIST_H_INCLUDED */