r6.1.0:lfds610_stack_pop

From liblfds.org
Jump to navigation Jump to search

Source Files

/liblfds610/src/lfds610_stack/lfds610_stack_push_pop.c
/liblfds610/inc/liblfds610.h

Prototype

int lfds610_stack_pop( struct lfds610_stack_state *ss, void **user_data );

Parameters

struct lfds610_stack_state *ss

A stack state as allocated by lfds610_stack_new.

void **user_data

The address of a pointer into which the user data will be placed. If the stack is empty, *user_data is not modified, as NULL is a valid user data value.

Return Value

The return value is 1 upon successful pop, 0 upon unsuccessful pop. Popping fails only if the stack is empty. Note that on an unsuccessful pop, *user_data is untouched; it is not set to NULL, since NULL is a valid user data value. Only the return value indicates whether or not the pop was successful.

Notes

No notes.

See Also