12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- : "memory")
- : "memory")
- : "memory")
- : "memory")
- : "memory")
- struct List
- {
- struct List *prev, *next;
- };
- static inline void list_init(struct List *list)
- {
- list->next = list;
- list->prev = list;
- }
- static inline void list_add(struct List *entry, struct List *node)
- {
-
- node->next = entry->next;
- node->next->prev = node;
- node->prev = entry;
- entry->next = node;
- }
- static inline void list_append(struct List *entry, struct List *node)
- {
-
- struct List *tail = entry->prev;
- list_add(tail, node);
- }
- static inline void list_del(struct List *entry)
- {
-
- entry->prev->next = entry->next;
- entry->next = entry->prev;
- }
- static inline bool list_empty(struct List* entry)
- {
-
- if(entry->prev == entry->next)
- return true;
- else return false;
- }
|