Home | History | Annotate | Download | only in lib

Lines Matching refs:func

17 SHLIST *shListFindItem( SHLIST *head, void *val, shListEqual func )
22 if( func ) {
23 if( func( val, item->data ) ) {
78 void shListDelItem( SHLIST *head, SHLIST *item, shListFree func )
87 if( func && item->data ) {
88 func( (void *)(item->data) );
131 shListCmp func )
135 if( func == NULL )
143 if( func( val, iptr->data, etal ) )
156 void shListDelAllItems( SHLIST *head, shListFree func )
161 shListDelItem( head, item, func );
167 void shListPrintAllItems( SHLIST *head, shListPrint func )
173 if( func ) {
174 func(item->data);