elks-enhanced
public
Read
Owner: themaster
Branch: master
Commits: 6893
Updated: 2026-04-19 00:15
Git CLI clone URL
git clone https://www.xt-emporium.com/git/elks-enhanced.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
elks-enhanced
/
elks
/
tools
/
mkromfs
/
list.h
File editor
/* Double-linked list with near pointers */ // TODO: move to top include #ifndef _LIST_H #define _LIST_H typedef unsigned char byte_t; typedef unsigned short u16_t; typedef unsigned long u32_t; struct list_node_s { struct list_node_s * prev; struct list_node_s * next; }; typedef struct list_node_s list_node_t; struct list_root_s { list_node_t node; u16_t count; }; typedef struct list_root_s list_root_t; void list_init (list_root_t * root); void list_add_tail (list_root_t * root, list_node_t * node); void list_add_head (list_root_t * root, list_node_t * node); void list_remove (list_root_t * root, list_node_t * node); #endif /* !_LIST_H */
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
master
Visibility
public
Your access
Read
Remote
Configured
File activity
View file history