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; };
Autor(es) | Mathieu Xhonneux, Nicolas Rybowski |
Fecha de entrega | Sin fecha de envío |
Tiempo límite de envío | Sin límite de envío |
Etiquetas de categoría | 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; };