list_subtract

Remove ptr from the list pointed to by *plist. Output: *plist is updated to be the start of the new list

extern (C++) nothrow @safe @nogc @trusted
void*
list_subtract
(
list_t* plist
,
void* ptr
)

Return Value

Type: void*

null if *plist is null otherwise ptr

Suggestion Box / Bug Report