X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=ucw%2Fclists.h;h=17d2201793b6b250f5c03e8465bc39dd358580b1;hb=305df0095d05525e1324cbc7c74d764535338b07;hp=919abc0767ddaf53a10b33d9deb2426021a25e80;hpb=a4fe009d3366b0a3e119713b0ecc7fc0070efdfa;p=libucw.git diff --git a/ucw/clists.h b/ucw/clists.h index 919abc07..17d22017 100644 --- a/ucw/clists.h +++ b/ucw/clists.h @@ -100,7 +100,7 @@ static inline int clist_empty(clist *l) #define CLIST_FOR_EACH_BACKWARDS(type,n,list) for(type n=(void*)(list).head.prev; (cnode*)(n) != &(list).head; n=(void*)((cnode*)(n))->prev) /** - * Insert a new node just after the node @after. To insert a new head, use @clist_add_head() instead. + * Insert a new node just after the node @after. To insert at the head of the list, use @clist_add_head() instead. **/ static inline void clist_insert_after(cnode *what, cnode *after) { @@ -112,7 +112,7 @@ static inline void clist_insert_after(cnode *what, cnode *after) } /** - * Insert a new node just before the node @before. To insert a new tail, use @clist_add_tail() instead. + * Insert a new node just before the node @before. To insert at the tail of the list, use @clist_add_tail() instead. **/ static inline void clist_insert_before(cnode *what, cnode *before) { @@ -189,6 +189,17 @@ static inline void clist_insert_list_after(clist *what, cnode *after) } } +/** + * Move all items from a source list to a destination list. The source list + * becomes empty, the original contents of the destination list are destroyed. + **/ +static inline void clist_move(clist *to, clist *from) +{ + clist_init(to); + clist_insert_list_after(from, &to->head); + clist_init(from); +} + /** * Compute the number of nodes in @l. Beware linear time complexity. **/