Ignore:
Timestamp:
Jan 5, 2006 11:35:46 PM (18 years ago)
Author:
bennylp
Message:

Added loop transport to test transaction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/list.h

    r66 r107  
    118118 
    119119/** 
     120 * Insert the node to the back of the list. This is just an alias for 
     121 * #pj_list_insert_before(). 
     122 * 
     123 * @param list  The list.  
     124 * @param node  The element to be inserted. 
     125 */ 
     126PJ_INLINE(void) pj_list_push_back(pj_list_type *list, pj_list_type *node) 
     127{ 
     128    pj_list_insert_before(list, node); 
     129} 
     130 
     131 
     132/** 
    120133 * Inserts all nodes in \a nodes to the target list. 
    121134 * 
     
    136149 */ 
    137150PJ_IDECL(void) pj_list_insert_after(pj_list_type *pos, pj_list_type *node); 
     151 
     152 
     153/** 
     154 * Insert the node to the front of the list. This is just an alias for 
     155 * #pj_list_insert_after(). 
     156 * 
     157 * @param list  The list.  
     158 * @param node  The element to be inserted. 
     159 */ 
     160PJ_INLINE(void) pj_list_push_front(pj_list_type *list, pj_list_type *node) 
     161{ 
     162    pj_list_insert_after(list, node); 
     163} 
     164 
    138165 
    139166/** 
Note: See TracChangeset for help on using the changeset viewer.