Embedded SDK
Embedded SDK
Loading...
Searching...
No Matches
Public Attributes | List of all members
flist_node_t Struct Reference

Forward list node structure (singly-linked) More...

#include <lists.h>

Collaboration diagram for flist_node_t:
Collaboration graph
[legend]

Public Attributes

struct flist_node_tnext
 

Detailed Description

Forward list node structure (singly-linked)

This structure represents a node in a forward list (singly-linked list). It contains only a pointer to the next node, making it memory-efficient (4-8 bytes per node).

Note
Memory footprint: 4 bytes (32-bit) or 8 bytes (64-bit)
See also
list_node_t for doubly-linked list with backward traversal support

Definition at line 24 of file lists.h.

Member Data Documentation

◆ next

struct flist_node_t* flist_node_t::next

Pointer to the next node (NULL if last)

Definition at line 25 of file lists.h.


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