mem_item
struct mem_item *item, *next;
struct mem_item *item, *next;
struct mem_item *next; /* pointer to next item in list, or NULL */
struct mem_item *first; /* pointer to first item in list, or NULL */
struct mem_item *item;
item = malloc(sizeof(struct mem_item));