![]() |
![]() |
![]() |
![]() |
Remove an element from a doubly linked queue
#include <search.h> void remque( void *elem);
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
![]() |
This function is in libc.a, but not in libc.so (in order to save space). |
The remque() function removes an element from a queue made from a doubly linked list. For more information about the elements of the queue, see insque(), which you can use to add elements.
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | Yes |
| Signal handler | Yes |
| Thread | Yes |
![]() |
![]() |
![]() |
![]() |