r6.1.1:lfds611_slist_new_head

From liblfds.org
Revision as of 14:07, 4 January 2015 by Admin (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Source Files

/liblfds611/src/lfds611_slist/lfds611_slist_new.c
/liblfds611/inc/liblfds611.h

Prototype

struct lfds611_slist_element *lfds611_slist_new_head( struct lfds611_slist_state *ss, void *user_data );

Parameters

struct lfds611_slist_state *ss

An slist state as allocated by lfds611_slist_new.

void *user_data

A void pointer of user data which will be placed into the list in the new head element.

Return Value

Returns a pointer to the new slist element. If element creation failed, which can only happen because of memory allocation failure, the return value is NULL.

Notes

This function creates a new slist element holding user_data and links it into the slist as the head element.

See Also