Main Page   Modules   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

/projects/cubeos/src_current/kernel/list.c File Reference

#include <stddef.h>
#include <list.h>

Include dependency graph for list.c:

Go to the source code of this file.

Functions

entryLIST_head (list *l)
 returns a pointer to the head entry of a list. More...

entryLIST_tail (list *l)
 returns a pointer to the tail entry of a list. More...

void LIST_init (list *l)
 initializes a list for first use. More...

int LIST_entries (list *l)
 returns the number of entries in a list. More...

void LIST_insert_after (entry *e, entry *x)
 inserts an entry after another entry in a list. More...

void LIST_insert_before (entry *e, entry *x)
 inserts an entry before another entry in a list. More...

void LIST_insert_head (list *l, entry *e)
 inserts an entry into a list as head entry and moves the previous head entry. More...

void LIST_insert_tail (list *l, entry *e)
 inserts an entry into a list as tail entry and moves the previous tail entry. More...

void LIST_delete (entry *e)
 deletes an entry from its current list. More...

void LIST_makeentry (entry *e)
 prepares an entry for (re-)use. More...


Detailed Description

Definition in file list.c.


Generated on Thu Feb 20 15:38:53 2003 for cubeOS by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002