![]() |
O2S C Library 1.8.2
Provide high-level data-structures and other fundamental tools for C projects
|
Remove elements from deques. More...
Go to the source code of this file.
Functions | |
bool | deque_pop_front (deque_t *self, void *destination) |
Pops the front-most element of the queue, copying it to destination. | |
bool | deque_pop_front_n (deque_t *self, void *destination, size_t count) |
Pops the count first elements of the queue. | |
bool | deque_pop_back (deque_t *self, void *destination) |
Pops the last element in the queue. | |
bool | deque_pop_back_n (deque_t *self, void *destination, size_t count) |
Pops the count last elements in the queue. |
Remove elements from deques.
Definition in file pop.c.
bool deque_pop_back | ( | deque_t * | self, |
void * | destination ) |
bool deque_pop_back_n | ( | deque_t * | self, |
void * | destination, | ||
size_t | count ) |
bool deque_pop_front | ( | deque_t * | self, |
void * | destination ) |