libqueue 1.0.0
Queue in C
All Data Structures Files Functions Variables Typedefs Pages
Data Fields
queue_t Struct Reference

Queue instance. More...

#include <queue.h>

Data Fields

u_int32_t size
 
queue_node_thead
 
queue_node_ttail
 

Detailed Description

Queue instance.

Implemented as a singly linked list, such that elements get pushed behind the tail, while elements get popped from head.

Field Documentation

◆ head

queue_node_t* queue_t::head

First node in the linked list

◆ size

u_int32_t queue_t::size

Size of the queue

◆ tail

queue_node_t* queue_t::tail

Last node in the linked list


The documentation for this struct was generated from the following file: