r6:Function:slist delete

From liblfds.org
Jump to navigation Jump to search

Source Files

/src/slist/slist_delete.c
/inc/liblfds.h

Prototype

void slist_delete( struct slist_state *ss );

Parameters

struct slist_state *ss

An slist state as allocated by slist_new.

Return Value

No return value.

Notes

This function deletes the slist. The user_data_delete_function function provided to slist_new is called with the user data from each element.

See Also