diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-31 13:30:55 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-31 13:30:55 +0000 |
commit | 7449e8356b19900acaa33e387bd4ea65ba85e204 (patch) | |
tree | 2eb63b04a2c5fbdba3c18df0ad1636a13075f2da /linkedlist.h | |
parent | 48fd0e472a75a32e70fa1938c2279cf730282370 (diff) | |
download | rsyslog-7449e8356b19900acaa33e387bd4ea65ba85e204.tar.gz rsyslog-7449e8356b19900acaa33e387bd4ea65ba85e204.tar.xz rsyslog-7449e8356b19900acaa33e387bd4ea65ba85e204.zip |
- added interface to register a cfsysline command handler (basic
functionality)
Diffstat (limited to 'linkedlist.h')
-rw-r--r-- | linkedlist.h | 1 |
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 */ |