To be a better coder
发布时间:2016-12-08 10:05:30
#define __list_for_each(pos, head) \ for (pos = (head)->next; pos != (head); pos = pos->next)#define list_for_each_safe(pos, n, head) \ for (pos = (head)->next, n = pos->next; pos != (head); \ pos = n, n = pos->next)__list_for_each(....){&.........【阅读全文】