You have a linked list. Each element of the list is a struct node
.
struct node { struct node *next; int hash; int id; char name[20]; char buffer[100]; unsigned int timestamp; char acl; short flow; char *parent; void *fifo; };
Forfatter(e) | Mathieu Xhonneux, Nicolas Rybowski |
Frist | Ingen frist |
Innleveringsgrense | Ingen begrensning |
Kategorimerkelapper | s4, category_pointer, category_malloc, category_struct, level4 |
You have a linked list. Each element of the list is a struct node
.
struct node { struct node *next; int hash; int id; char name[20]; char buffer[100]; unsigned int timestamp; char acl; short flow; char *parent; void *fifo; };