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; };
יוצרים | Mathieu Xhonneux, Nicolas Rybowski |
מועד הגשה | אין מועד הגשה |
מגבלת הגשות | אין הגבלה |
תגיות קטגוריה | 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; };