]> mj.ucw.cz Git - libucw.git/commitdiff
clists: improve doc.
authorMartin Mares <mj@ucw.cz>
Sun, 25 Jan 2009 13:08:03 +0000 (14:08 +0100)
committerMartin Mares <mj@ucw.cz>
Sun, 25 Jan 2009 13:08:03 +0000 (14:08 +0100)
ucw/clists.h

index 919abc0767ddaf53a10b33d9deb2426021a25e80..2be40881854318db27e49497643ed69d9ee6c7ba 100644 (file)
@@ -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)
 {